forked from open-telemetry/opentelemetry-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
106 lines (99 loc) · 2.17 KB
/
BUILD
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
package(default_visibility = ["//visibility:public"])
cc_library(
name = "opentracing_shim",
srcs = [
"src/shim_utils.cc",
"src/span_context_shim.cc",
"src/span_shim.cc",
"src/tracer_shim.cc",
],
hdrs = [
"include/opentelemetry/opentracingshim/propagation.h",
"include/opentelemetry/opentracingshim/shim_utils.h",
"include/opentelemetry/opentracingshim/span_context_shim.h",
"include/opentelemetry/opentracingshim/span_shim.h",
"include/opentelemetry/opentracingshim/tracer_shim.h",
],
strip_include_prefix = "include",
tags = ["opentracing"],
deps = [
"//api",
"@com_github_opentracing//:opentracing",
],
)
cc_test(
name = "propagation_test",
srcs = [
"test/propagation_test.cc",
"test/shim_mocks.h",
],
tags = [
"opentracing_shim",
"test",
],
deps = [
":opentracing_shim",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "shim_utils_test",
srcs = [
"test/shim_mocks.h",
"test/shim_utils_test.cc",
],
tags = [
"opentracing_shim",
"test",
],
deps = [
":opentracing_shim",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "span_shim_test",
srcs = [
"test/shim_mocks.h",
"test/span_shim_test.cc",
],
tags = [
"opentracing_shim",
"test",
],
deps = [
":opentracing_shim",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "span_context_shim_test",
srcs = [
"test/span_context_shim_test.cc",
],
tags = [
"opentracing_shim",
"test",
],
deps = [
":opentracing_shim",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "tracer_shim_test",
srcs = [
"test/shim_mocks.h",
"test/tracer_shim_test.cc",
],
tags = [
"opentracing_shim",
"test",
],
deps = [
":opentracing_shim",
"@com_google_googletest//:gtest_main",
],
)