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
|
{ "hasher":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["hasher"]
, "srcs": ["hasher.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["@", "src", "src/buildtool/crypto", "hasher"]
, ["", "catch-main"]
]
, "stage": ["test", "buildtool", "crypto"]
}
, "hash_function":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["hash_function"]
, "srcs": ["hash_function.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["@", "src", "src/buildtool/crypto", "hash_function"]
, ["@", "src", "src/buildtool/crypto", "hasher"]
, ["", "catch-main"]
]
, "stage": ["test", "buildtool", "crypto"]
}
, "hash_info":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["hash_info"]
, "srcs": ["hash_info.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["@", "src", "src/buildtool/crypto", "hash_function"]
, ["@", "src", "src/buildtool/crypto", "hash_info"]
, ["", "catch-main"]
]
, "stage": ["test", "buildtool", "crypto"]
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "stage": ["crypto"]
, "deps": ["hash_function", "hash_info", "hasher"]
}
}
|