mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2026-01-02 03:57:55 +08:00
17 lines
310 B
Python
17 lines
310 B
Python
load("@rules_cc//cc:defs.bzl", "cc_test")
|
|
|
|
cc_test(
|
|
name = "test",
|
|
srcs = glob([
|
|
"*.cpp",
|
|
"*.h",
|
|
]),
|
|
deps = [
|
|
"//:yaml-cpp",
|
|
"//:yaml-cpp_internal",
|
|
"//test:mock_event_handler",
|
|
"//test:specexamples",
|
|
"@googletest//:gtest_main",
|
|
],
|
|
)
|