• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_cc//cc:defs.bzl", "cc_binary")
2
3cc_binary(
4    name = "cpp",
5    srcs = [
6        "cpp_benchmark.cc",
7    ],
8    tags = ["benchmark"],
9    deps = [
10        "//:protobuf",
11        "//benchmarks:benchmarks_cc_proto",
12        "//benchmarks/datasets:cc_protos",
13        "@com_github_google_benchmark//:benchmark_main",
14    ],
15)
16