This pull request enables Bazel build support for cpptrace. Please note that currently, only Linux is supported. Additional platform support will be added if necessary.
14 lines
275 B
Python
14 lines
275 B
Python
cc_test(
|
|
name = "unittest",
|
|
deps = [
|
|
"//:cpptrace",
|
|
"@googletest//:gtest",
|
|
"@googletest//:gtest_main"
|
|
],
|
|
srcs = [
|
|
"unit/object_trace.cpp",
|
|
"unit/raw_trace.cpp",
|
|
"unit/stacktrace.cpp"
|
|
],
|
|
linkstatic = 1,
|
|
) |