blob: 8c3c3b409ce13b7ae40bfb30dba53491c5ae8c52 [file] [log] [blame]
load("@rules_java//java:defs.bzl", "java_test")
filegroup(
name = "srcs",
testonly = 0,
srcs = glob(["**"]),
visibility = ["//src:__subpackages__"],
)
java_test(
name = "CallcountsTest",
srcs = ["CallcountsTest.java"],
deps = [
"//src/main/java/com/google/devtools/build/lib/profiler/callcounts",
"//third_party:guava",
"//third_party:junit4",
"//third_party:truth",
"//third_party/pprof:profile_java_proto",
],
)