1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ "logger":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["logger"]
, "srcs": ["logger.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/buildtool/logging", "log_level"]
, ["@", "src", "src/buildtool/logging", "logging"]
]
, "stage": ["test", "buildtool", "logging"]
}
, "log_sink_file":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["log_sink_file"]
, "srcs": ["log_sink_file.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/buildtool/logging", "log_level"]
, ["@", "src", "src/buildtool/logging", "logging"]
, ["@", "src", "src/buildtool/file_system", "file_system_manager"]
]
, "stage": ["test", "buildtool", "logging"]
, "private-ldflags": ["-pthread"]
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "stage": ["logging"]
, "deps": ["log_sink_file", "logger"]
}
}
|