aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
diff options
context:
space:
mode:
authorGravatar ruperts <ruperts@google.com>2017-12-05 21:53:50 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-05 21:55:51 -0800
commitbec2fe85bdf07d944d0cb650b59732ea8d3e804c (patch)
tree06c6498199be667869d6885ea1f0ec9bfbf8f963 /src/test/shell/integration/BUILD
parent7964b1aa0d6c681799633f8a20d5ade78aec8289 (diff)
Make ProcessWrapperUtil aware of the execution statistics file, and add new ExecutionStatisticsProvider.
RELNOTES: None. PiperOrigin-RevId: 178056182
Diffstat (limited to 'src/test/shell/integration/BUILD')
-rw-r--r--src/test/shell/integration/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/shell/integration/BUILD b/src/test/shell/integration/BUILD
index 214d54799d..63ba90f072 100644
--- a/src/test/shell/integration/BUILD
+++ b/src/test/shell/integration/BUILD
@@ -296,10 +296,20 @@ sh_test(
],
)
+package_group(
+ name = "spend_cpu_time_users",
+ packages = [
+ "//src/test/java/com/google/devtools/build/lib/...",
+ ],
+)
+
cc_binary(
name = "spend_cpu_time",
testonly = 1,
srcs = ["spend_cpu_time.cc"],
+ visibility = [
+ ":spend_cpu_time_users",
+ ],
)
########################################################################