summaryrefslogtreecommitdiff
path: root/src/buildtool/crypto/TARGETS
blob: ab2d6b21c94778ded68bf4fbb1950def58695700 (plain)
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
{ "hasher":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["hasher"]
  , "hdrs":
    [ "hasher.hpp"
    , "hash_impl_sha1.hpp"
    , "hash_impl_sha256.hpp"
    , "hash_impl_sha512.hpp"
    ]
  , "srcs":
    [ "hasher.cpp"
    , "hash_impl_sha1.cpp"
    , "hash_impl_sha256.cpp"
    , "hash_impl_sha512.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", "", "gsl"]]
  , "stage": ["src", "buildtool", "crypto"]
  }
}