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
|
{ "hasher":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["hasher"]
, "hdrs": ["hasher.hpp"]
, "srcs": ["hasher.cpp"]
, "stage": ["src", "buildtool", "crypto"]
, "deps": [["src/utils/cpp", "hex_string"]]
, "private-deps":
[ ["@", "gsl", "", "gsl"]
, ["@", "ssl", "", "crypto"]
, ["src/buildtool/logging", "log_level"]
, ["src/buildtool/logging", "logging"]
]
}
, "hash_function":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["hash_function"]
, "hdrs": ["hash_function.hpp"]
, "srcs": ["hash_function.cpp"]
, "deps": ["hasher", ["@", "gsl", "", "gsl"]]
, "private-deps":
[ ["src/buildtool/logging", "log_level"]
, ["src/buildtool/logging", "logging"]
, ["src/utils/cpp", "expected"]
, ["src/utils/cpp", "incremental_reader"]
]
, "stage": ["src", "buildtool", "crypto"]
}
, "hash_info":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["hash_info"]
, "hdrs": ["hash_info.hpp"]
, "srcs": ["hash_info.cpp"]
, "deps": ["hash_function", ["src/utils/cpp", "expected"]]
, "private-deps":
[ "hasher"
, ["@", "fmt", "", "fmt"]
, ["src/buildtool/common", "protocol_traits"]
, ["src/utils/cpp", "hex_string"]
]
, "stage": ["src", "buildtool", "crypto"]
}
}
|