aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2015-09-15 13:26:11 +0000
committerGravatar John Field <jfield@google.com>2015-09-15 20:27:35 +0000
commit5d737d642623749c8672916548b7c7c85b2ca9e6 (patch)
tree86b558e9ef7aabf498828ec91fb985fbd1687692
parentee56459bc541eee81ffb2f7a6b5a9ff20cd4b279 (diff)
Some minor updates to the BUILD files.
-- MOS_MIGRATED_REVID=103087492
-rw-r--r--src/main/cpp/BUILD3
-rw-r--r--src/test/cpp/BUILD5
-rw-r--r--src/test/cpp/util/BUILD5
3 files changed, 7 insertions, 6 deletions
diff --git a/src/main/cpp/BUILD b/src/main/cpp/BUILD
index 5234c7c21d..dfa4a60c85 100644
--- a/src/main/cpp/BUILD
+++ b/src/main/cpp/BUILD
@@ -1,5 +1,8 @@
# Description:
# The Bazel launcher.
+package(
+ default_visibility = ["//visibility:public"],
+)
cc_library(
name = "blaze_util",
diff --git a/src/test/cpp/BUILD b/src/test/cpp/BUILD
index 594dcfb2f8..892d73b99c 100644
--- a/src/test/cpp/BUILD
+++ b/src/test/cpp/BUILD
@@ -1,5 +1,6 @@
# Description:
# C++ utility tests for Bazel
+package(default_visibility = ["//visibility:public"])
cc_test(
name = "blaze_util_test",
@@ -11,6 +12,4 @@ cc_test(
],
)
-test_suite(
- name = "all_tests",
-)
+test_suite(name = "all_tests")
diff --git a/src/test/cpp/util/BUILD b/src/test/cpp/util/BUILD
index 1c62d7d289..e59029cf3e 100644
--- a/src/test/cpp/util/BUILD
+++ b/src/test/cpp/util/BUILD
@@ -1,5 +1,6 @@
# Description:
# C++ utility tests for Bazel
+package(default_visibility = ["//visibility:public"])
cc_test(
name = "md5_test",
@@ -29,6 +30,4 @@ cc_test(
],
)
-test_suite(
- name = "all_tests",
-)
+test_suite(name = "all_tests")