aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Manjunath Kudlur <keveman@gmail.com>2015-12-08 10:46:17 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2015-12-08 10:46:26 -0800
commitd03ef20039111baf43a9b9754de3c56a63e6b13b (patch)
tree4c8e6cd128603535b9f903389d4b835c98526a35 /BUILD
parent7b311afc3eaedad2a3f094b545de647f508a7845 (diff)
Made targets relative to google/protobuf
Fixes #1029
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD b/BUILD
index b85bd563..89b8162a 100644
--- a/BUILD
+++ b/BUILD
@@ -510,7 +510,7 @@ internal_copied_filegroup(
)
cc_binary(
- name = "google/protobuf/internal/_api_implementation.so",
+ name = "internal/_api_implementation.so",
srcs = ["python/google/protobuf/internal/api_implementation.cc"],
copts = COPTS + [
"-DPYTHON_PROTO2_CPP_IMPL_V2",
@@ -524,7 +524,7 @@ cc_binary(
)
cc_binary(
- name = "google/protobuf/pyext/_message.so",
+ name = "pyext/_message.so",
srcs = glob([
"python/google/protobuf/pyext/*.cc",
"python/google/protobuf/pyext/*.h",
@@ -560,8 +560,8 @@ py_proto_library(
data = select({
"//conditions:default": [],
":use_fast_cpp_protos": [
- ":google/protobuf/internal/_api_implementation.so",
- ":google/protobuf/pyext/_message.so",
+ ":internal/_api_implementation.so",
+ ":pyext/_message.so",
],
}),
default_runtime = "",