aboutsummaryrefslogtreecommitdiff
path: root/tests/meta
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2016-11-18 18:38:08 +0000
committerMarco Poletti <poletti.marco@gmail.com>2016-11-18 18:42:08 +0000
commit6df80a77dcfad7ad9a1aa9cea72fa2ed5f37505f (patch)
treebb0c458b0476f72ab28ed95297de7d172effee0a /tests/meta
parent8072dcad8b3c5f37c3fc01d452f50a4c866fbf85 (diff)
downloadgoogle-fruit-6df80a77dcfad7ad9a1aa9cea72fa2ed5f37505f.tar.gz
Use extras/bazel_root as WORKSPACE root for Bazel, using symlinks so that Fruit lives under //third_party/fruit instead of //.
This makes it easier to use Fruit in projects built using Bazel, and makes Fruit's BUILD targets more reasonable (e.g. //third_party/fruit instead of //:fruit). Also, install Bazel fia the apt packages in Travis CI, and move the Bazel tests to use Ubuntu 16.04 instead of 15.10.
Diffstat (limited to 'tests/meta')
-rw-r--r--tests/meta/BUILD6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/meta/BUILD b/tests/meta/BUILD
index c1682ec..554d739 100644
--- a/tests/meta/BUILD
+++ b/tests/meta/BUILD
@@ -1,9 +1,11 @@
+licenses(["notice"])
+
[cc_test(
name = filename[:-4],
srcs = [filename, "common.h"],
deps = [
- "//tests:test_macros",
- "//:fruit",
+ "//third_party/fruit/tests:test_macros",
+ "//third_party/fruit",
]
) for filename in glob(["*.cpp"])]