1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ "hasher":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["hasher"]
, "hdrs": ["hasher.hpp", "hash_impl_sha1.hpp", "hash_impl_sha256.hpp"]
, "srcs": ["hasher.cpp", "hash_impl_sha1.cpp", "hash_impl_sha256.cpp"]
, "stage": ["src", "buildtool", "crypto"]
, "deps":
[["src/buildtool/logging", "logging"], ["src/utils/cpp", "hex_string"]]
, "private-deps": [["@", "ssl", "", "crypto"]]
}
, "hash_function":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["hash_function"]
, "hdrs": ["hash_function.hpp"]
, "deps": ["hasher", ["@", "gsl-lite", "", "gsl-lite"]]
, "stage": ["src", "buildtool", "crypto"]
}
}
|