aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-04-11 10:34:45 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-11 11:24:01 +0000
commit285112c9b61ca3782e00ccf6411339da7291a3c3 (patch)
tree9e6c9d3c905be50c56209b3f37d3098ab8b23caf /third_party
parentdaafdcda9c8e0f883e18bc7c69aad44903a909c8 (diff)
Remove te protocol compiler rules from @bazel_tools.
The immmediate reason for this change is that we also need to add gRPC support to the proto rules, and we don't want to also support gRPC in a half-baked way. This makes the Bazel binary much smaller and avoid giving false signals that we (for now) support protobuf compilation. The protobuf rules are only for compiling Bazel itself. RELNOTES[INC]: Bazel does not embed protocol buffer-related rules anymore. -- MOS_MIGRATED_REVID=119516246
Diffstat (limited to 'third_party')
-rw-r--r--third_party/BUILD18
-rw-r--r--third_party/protobuf/BUILD2
2 files changed, 19 insertions, 1 deletions
diff --git a/third_party/BUILD b/third_party/BUILD
index 5c6b80abdd..e0d331441d 100644
--- a/third_party/BUILD
+++ b/third_party/BUILD
@@ -20,6 +20,24 @@ filegroup(
)
filegroup(
+ name = "embedded_tools_srcs",
+ srcs = glob(["**"]) + [
+ "//third_party/ijar:srcs",
+ "//third_party/iossim:srcs",
+ "//third_party/java/apkbuilder:srcs",
+ "//third_party/java/buck-ios-support:srcs",
+ "//third_party/java/dd_plist:srcs",
+ "//third_party/java/j2objc:srcs",
+ "//third_party/java/jarjar:srcs",
+ "//third_party/java/jdk/langtools:srcs",
+ "//third_party/py/concurrent:srcs",
+ "//third_party/py/gflags:srcs",
+ "//third_party/py/mock:srcs",
+ "//third_party/py/six:srcs",
+ ],
+)
+
+filegroup(
name = "d3-js",
srcs = glob(["javascript/d3/**/*.js"]),
)
diff --git a/third_party/protobuf/BUILD b/third_party/protobuf/BUILD
index f9539e1e44..44b190398f 100644
--- a/third_party/protobuf/BUILD
+++ b/third_party/protobuf/BUILD
@@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
licenses(["notice"])
-load("@bazel_tools//third_party/protobuf:protobuf.bzl", "py_proto_library")
+load("//third_party/protobuf:protobuf.bzl", "py_proto_library")
filegroup(
name = "srcs",