aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/runfiles/BUILD
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2018-02-28 06:48:18 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-28 06:49:53 -0800
commite7d9e1f8aae459ec71cdb31f988661f4c3975ca8 (patch)
treeb9e4f36d4ad55fe8a45aba0667db010fae9e8e95 /src/tools/runfiles/BUILD
parent51275462a5f63d34e176e76ef372e91b25ecee56 (diff)
runfiles,C++: implement manifest-based runfiles
Implement a manifest-based Runfiles object, add tests and test utils (MockFile). Subsequent commits will add more feataures: - creating list of envvars to pass to child processes - automatic Runfiles creation based on argv[0] and the envvars of this process See https://github.com/bazelbuild/bazel/issues/4460 Change-Id: I4376ede3ac00241688ff16a36ed596fb08f13a72 PiperOrigin-RevId: 187318502
Diffstat (limited to 'src/tools/runfiles/BUILD')
-rw-r--r--src/tools/runfiles/BUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/runfiles/BUILD b/src/tools/runfiles/BUILD
index c6ec162139..d3545fd3e7 100644
--- a/src/tools/runfiles/BUILD
+++ b/src/tools/runfiles/BUILD
@@ -64,6 +64,7 @@ cc_test(
srcs = ["runfiles_test.cc"],
deps = [
":cc-runfiles",
+ "//src/main/cpp/util:file",
"//third_party:gtest",
],
)