summaryrefslogtreecommitdiff
path: root/src/buildtool/crypto/TARGETS
blob: d68758edec50ff486f4027df94db7e034f329d59 (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
29
30
31
{ "hash_impl":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["hash_impl"]
  , "hdrs":
    [ "hash_impl.hpp"
    , "hash_impl_md5.hpp"
    , "hash_impl_sha1.hpp"
    , "hash_impl_sha256.hpp"
    , "hash_impl_git.hpp"
    ]
  , "srcs":
    [ "hash_impl_md5.cpp"
    , "hash_impl_sha1.cpp"
    , "hash_impl_sha256.cpp"
    , "hash_impl_git.cpp"
    ]
  , "deps":
    [ ["src/buildtool/logging", "logging"]
    , ["src/utils/cpp", "hex_string"]
    , ["@", "ssl", "", "crypto"]
    ]
  , "stage": ["src", "buildtool", "crypto"]
  }
, "hash_generator":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["hash_generator"]
  , "hdrs": ["hash_generator.hpp"]
  , "deps": ["hash_impl"]
  , "stage": ["src", "buildtool", "crypto"]
  }
}