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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{ "path":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["path"]
, "srcs": ["path.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/utils/cpp", "path"]
]
, "stage": ["test", "utils", "cpp"]
}
, "curl_usage_install":
{ "type": ["@", "rules", "CC", "binary"]
, "tainted": ["test"]
, "name": ["curl_usage"]
, "srcs": ["curl_usage.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/utils/cpp", "curl_context"]
, ["src/utils/cpp", "curl_easy_handle"]
, ["src/buildtool/file_system", "file_system_manager"]
]
, "stage": ["test", "utils", "cpp"]
}
, "curl_usage_test":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["curl_usage_test"]
, "test": ["curl_usage_test.sh"]
, "deps": [["test/utils", "test_utils_install"], "curl_usage_install"]
}
, "archive_usage":
{ "type": ["@", "rules", "CC/test", "test"]
, "tainted": ["test"]
, "name": ["archive_usage"]
, "srcs": ["archive_usage.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/buildtool/file_system", "file_system_manager"]
, ["", "libarchive"]
, ["src/utils/cpp", "archive_ops"]
]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps": ["path", "curl_usage_test", "archive_usage"]
}
}
|