Skip to content

Commit

Permalink
Run buildifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnimmer-tri committed Apr 1, 2017
1 parent 1aaf9e0 commit 293c7ce
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 24 deletions.
2 changes: 1 addition & 1 deletion drake/automotive/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ drake_cc_library(
deps = [
":generated_vectors",
":idm_planner",
":simple_car",
":pose_selector",
":simple_car",
"//drake/automotive/maliput/api",
"//drake/math:saturate",
"//drake/systems/rendering:pose_bundle",
Expand Down
8 changes: 6 additions & 2 deletions drake/automotive/maliput/rndf/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# This file contains rules for Bazel; see drake/doc/bazel.rst.

load("//tools:cpplint.bzl", "cpplint")
load("//tools:drake.bzl", "drake_cc_binary", "drake_cc_googletest",
"drake_cc_library")
load(
"//tools:drake.bzl",
"drake_cc_binary",
"drake_cc_googletest",
"drake_cc_library",
)

package(default_visibility = ["//visibility:public"])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ drake_cc_library(
"plan_eval_utils.h",
],
deps = [
"//drake/common/trajectories:piecewise_quaternion",
"//drake/common/trajectories:piecewise_polynomial",
"//drake/common/trajectories:piecewise_quaternion",
"//drake/multibody:rigid_body_tree",
],
)
Expand Down
33 changes: 16 additions & 17 deletions drake/examples/particles/BUILD
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
# -*- python -*-

load("//tools:cpplint.bzl", "cpplint")

load(
"//tools:drake.bzl",
"drake_cc_googletest",
"drake_cc_library",
"drake_cc_binary"
"drake_cc_binary",
)

filegroup(
name = "models",
srcs = glob([
"models/*.sdf"
])
"models/*.sdf",
]),
)

drake_cc_library(
name = "particles",
srcs = [
"particle.cc",
"utilities.cc"
"utilities.cc",
],
hdrs = [
"particle.h",
"utilities.h"
"utilities.h",
],
deps = [
"//drake/common",
"//drake/systems/framework:leaf_system",
"//drake/systems/primitives:matrix_gain"
]
"//drake/systems/primitives:matrix_gain",
],
)

drake_cc_binary(
Expand All @@ -39,33 +38,33 @@ drake_cc_binary(
"uniformly_accelerated_particle.cc",
],
data = [
":models"
":models",
],
deps = [
":particles",
"//drake/common:text_logging_gflags",
"//drake/lcm",
"//drake/multibody/parsers",
"//drake/multibody/rigid_body_plant:drake_visualizer",
"//drake/systems/analysis",
"//drake/systems/primitives:constant_vector_source",
"//drake/multibody/rigid_body_plant:drake_visualizer",
"//drake/common:text_logging_gflags",
"//drake/multibody/parsers"
]
],
)

# === test/ ===

drake_cc_googletest(
name = "particle_test",
deps = [
":particles"
]
":particles",
],
)

drake_cc_googletest(
name = "utilities_test",
deps = [
":particles"
]
":particles",
],
)

cpplint()
1 change: 0 additions & 1 deletion drake/manipulation/models/iiwa_description/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# This file contains rules for Bazel; see drake/doc/bazel.rst.

load("//tools:cpplint.bzl", "cpplint")

load(
"//tools:drake.bzl",
"drake_cc_googletest",
Expand Down
4 changes: 2 additions & 2 deletions drake/tools/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ py_library(

py_binary(
name = "clang-format-includes",
main = "clang_format_includes.py",
srcs = ["clang_format_includes.py"],
deps = [":formatter"],
data = ["//tools:clang-format"],
main = "clang_format_includes.py",
deps = [":formatter"],
)

# === test/ ===
Expand Down

0 comments on commit 293c7ce

Please sign in to comment.