mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-07-21 11:15:25 -04:00
3738976bdc
Bazel 9 drops builtin `cc_*` rules, they need to be loaded explicitly now.
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",
|
|
],
|
|
)
|