From 5cbd5a49d90658e0a52fb1d15eda19f3cc252cbb Mon Sep 17 00:00:00 2001 From: Damien Martin-Guillerez Date: Tue, 24 Mar 2015 21:55:19 +0000 Subject: 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 --- examples/java-native/src/main/java/com/example/myproject/BUILD | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'examples/java-native/src/main/java') diff --git a/examples/java-native/src/main/java/com/example/myproject/BUILD b/examples/java-native/src/main/java/com/example/myproject/BUILD index 717625343b..960877761f 100644 --- a/examples/java-native/src/main/java/com/example/myproject/BUILD +++ b/examples/java-native/src/main/java/com/example/myproject/BUILD @@ -22,3 +22,8 @@ java_library( srcs = ["Greeter.java"], resources = ["//examples/java-native/src/main/resources:greeting"], ) + +filegroup( + name = "srcs", + srcs = ["BUILD"] + glob(["**/*.java"]), +) -- cgit v1.2.3