| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Copyright The OpenTelemetry Authors
- # SPDX-License-Identifier: Apache-2.0
- load("//bazel:otel_cc_benchmark.bzl", "otel_cc_benchmark")
- otel_cc_benchmark(
- name = "spinlock_benchmark",
- srcs = ["spinlock_benchmark.cc"],
- tags = [
- "api",
- "benchmark",
- "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",
- ],
- )
|