forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BUILD.bazel
53 lines (44 loc) · 1.32 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- python -*-
# This file is named BUILD.bazel instead of the more typical BUILD, so that on
# OSX it won't conflict with a build artifacts directory named "build".
load("@drake//tools/install:install.bzl", "install")
load("//tools/lint:lint.bzl", "add_lint_tests")
load("//tools/skylark:6996.bzl", "adjust_labels_for_drake_hoist")
package(
default_visibility = ["//visibility:public"],
)
exports_files([
"CPPLINT.cfg",
".bazelproject",
".clang-format",
# TODO(jwnimmer-tri) This won't appear until #6996 merges.
".drake-find_resource-sentinel",
])
alias(
name = "protoc",
actual = "@com_google_protobuf//:protoc",
)
alias(
name = "protobuf",
actual = "@com_google_protobuf//:protobuf",
)
alias(
name = "protobuf_python",
actual = "@com_google_protobuf//:protobuf_python",
)
install(
name = "install",
docs = ["LICENSE.TXT"],
deps = adjust_labels_for_drake_hoist([
"//drake/automotive/models:install_data",
"//drake/bindings/pydrake:install",
"//drake/common:install",
"//drake/common/proto:install",
"//drake/examples:install",
"//drake/lcmtypes:install",
"//drake/manipulation/models:install_data",
"//tools/install/libdrake:install",
"//tools/workspace:install_external_packages",
]),
)
add_lint_tests()