summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/opentelemetry-cpp/api/test/common/BUILD
blob: 5bfc1115d748f621b2678d8f0938fa87d3f31efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
load("//bazel:otel_cc_benchmark.bzl", "otel_cc_benchmark")

otel_cc_benchmark(
    name = "spinlock_benchmark",
    srcs = ["spinlock_benchmark.cc"],
    tags = [
        "api",
        "test",
    ],
    deps = ["//api"],
)

cc_test(
    name = "kv_properties_test",
    srcs = [
        "kv_properties_test.cc",
    ],
    tags = [
        "api",
        "test",
    ],
    deps = [
        "//api",
        "@com_google_googletest//:gtest_main",
    ],
)

cc_test(
    name = "string_util_test",
    srcs = [
        "string_util_test.cc",
    ],
    tags = [
        "api",
        "test",
    ],
    deps = [
        "//api",
        "@com_google_googletest//:gtest_main",
    ],
)