File: BUILD.bazel

package info (click to toggle)
yaml-cpp 0.9.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,712 kB
  • sloc: cpp: 27,373; ansic: 967; python: 196; makefile: 47
file content (16 lines) | stat: -rw-r--r-- 310 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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",
    ],
)