summaryrefslogtreecommitdiffstats
path: root/mocktracer/BUILD
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:44:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 09:44:33 +0000
commitb196c6498d22e47bb9d0da0153068ec54eac7956 (patch)
tree1a994a492581e93224a7ee6455f5d4e9d2ec8e59 /mocktracer/BUILD
parentInitial commit. (diff)
downloadopentracing-cpp-b196c6498d22e47bb9d0da0153068ec54eac7956.tar.xz
opentracing-cpp-b196c6498d22e47bb9d0da0153068ec54eac7956.zip
Adding upstream version 1.6.0.upstream/1.6.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mocktracer/BUILD')
-rw-r--r--mocktracer/BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/mocktracer/BUILD b/mocktracer/BUILD
new file mode 100644
index 0000000..3b22bab
--- /dev/null
+++ b/mocktracer/BUILD
@@ -0,0 +1,19 @@
+cc_library(
+ name = "mocktracer",
+ srcs = glob(["src/*.cpp", "src/*.h"]),
+ hdrs = glob(["include/opentracing/**/*.h"]),
+ strip_include_prefix = "include",
+ visibility = ["//visibility:public"],
+ deps = [
+ "//:opentracing",
+ ],
+)
+
+cc_binary(
+ name = "libmocktracer_plugin.so",
+ linkshared = 1,
+ visibility = ["//visibility:public"],
+ deps = [
+ "//mocktracer:mocktracer"
+ ],
+)