aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Marcel Hlopko <hlopko@google.com>2017-10-11 17:40:48 +0200
committerGravatar Marcel Hlopko <hlopko@google.com>2017-10-11 18:21:06 +0200
commitfdb43643b309f2882887e63c108bcc079a18c6d0 (patch)
treeac638263b6718090565e80c397559d79bb43cc13 /third_party
parent1b99386e19fb07175a49f048dfd7cf33ed476f1b (diff)
Fix failing srcs_test for newly added pprof
ci.bazel.io started failing after 8e04f24517feb48024f21aa2cf672550463107cf: https://ci.bazel.io/blue/rest/organizations/jenkins/pipelines/bazel-tests/runs/1081/nodes/26/steps/226/log/?start=0 This cl fixes the failing test. Change-Id: If31aeee66deb2312fa8c643aa3f85ce58c00bef2 RELNOTES: None.
Diffstat (limited to 'third_party')
-rw-r--r--third_party/BUILD1
-rw-r--r--third_party/pprof/BUILD5
2 files changed, 6 insertions, 0 deletions
diff --git a/third_party/BUILD b/third_party/BUILD
index 3882fedc94..88766d63c6 100644
--- a/third_party/BUILD
+++ b/third_party/BUILD
@@ -33,6 +33,7 @@ filegroup(
"//third_party/nanopb:srcs",
"//third_party/googleapis:srcs",
"//third_party/def_parser:srcs",
+ "//third_party/pprof:srcs",
],
)
diff --git a/third_party/pprof/BUILD b/third_party/pprof/BUILD
index faa199b6ee..0fb1b97fad 100644
--- a/third_party/pprof/BUILD
+++ b/third_party/pprof/BUILD
@@ -2,6 +2,11 @@ package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Apache 2.0
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+)
+
proto_library(
name = "profile_proto",
srcs = ["profile.proto"],