aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/java-skylark/src/main/java/com/example/myproject/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-03-24 21:55:19 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-03-25 10:31:21 +0000
commit5cbd5a49d90658e0a52fb1d15eda19f3cc252cbb (patch)
tree27099e404f80833cb72463b48a3293c66fb8ae90 /examples/java-skylark/src/main/java/com/example/myproject/BUILD
parent6391a3da62146f6c890f17a221dcd8c22efb6d6f (diff)
Open-source Bazel integration tests
It is a first batch of integration tests for Bazel. They tests some basic behaviors and nominal cases of Bazel rules (especially they tests the behavior of the examples provided in //examples). -- MOS_MIGRATED_REVID=89440074
Diffstat (limited to 'examples/java-skylark/src/main/java/com/example/myproject/BUILD')
-rw-r--r--examples/java-skylark/src/main/java/com/example/myproject/BUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/java-skylark/src/main/java/com/example/myproject/BUILD b/examples/java-skylark/src/main/java/com/example/myproject/BUILD
index 10ca2d440d..70618aafb5 100644
--- a/examples/java-skylark/src/main/java/com/example/myproject/BUILD
+++ b/examples/java-skylark/src/main/java/com/example/myproject/BUILD
@@ -19,3 +19,8 @@ java_library(
srcs = ["Greeter.java"],
data = ["//examples/java-skylark/src/main/resources:greeting"],
)
+
+filegroup(
+ name = "srcs",
+ srcs = ["BUILD"] + glob(["**/*.java"]),
+)