OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("certificate_transparency") { | 5 source_set("certificate_transparency") { |
6 sources = [ | 6 sources = [ |
| 7 "log_dns_client.cc", |
| 8 "log_dns_client.h", |
7 "log_proof_fetcher.cc", | 9 "log_proof_fetcher.cc", |
8 "log_proof_fetcher.h", | 10 "log_proof_fetcher.h", |
9 "single_tree_tracker.cc", | 11 "single_tree_tracker.cc", |
10 "single_tree_tracker.h", | 12 "single_tree_tracker.h", |
11 "tree_state_tracker.cc", | 13 "tree_state_tracker.cc", |
12 "tree_state_tracker.h", | 14 "tree_state_tracker.h", |
13 ] | 15 ] |
14 | 16 |
15 deps = [ | 17 deps = [ |
16 "//base", | 18 "//base", |
| 19 "//components/base32", |
17 "//components/safe_json", | 20 "//components/safe_json", |
18 "//net", | 21 "//net", |
19 "//url", | 22 "//url", |
20 ] | 23 ] |
21 } | 24 } |
22 | 25 |
23 source_set("unit_tests") { | 26 source_set("unit_tests") { |
24 testonly = true | 27 testonly = true |
25 sources = [ | 28 sources = [ |
| 29 "log_dns_client_unittest.cc", |
26 "log_proof_fetcher_unittest.cc", | 30 "log_proof_fetcher_unittest.cc", |
27 "single_tree_tracker_unittest.cc", | 31 "single_tree_tracker_unittest.cc", |
28 ] | 32 ] |
29 | 33 |
30 deps = [ | 34 deps = [ |
31 ":certificate_transparency", | 35 ":certificate_transparency", |
32 "//base/test:test_support", | 36 "//base/test:test_support", |
33 "//components/safe_json:test_support", | 37 "//components/safe_json:test_support", |
| 38 "//content/test:test_support", |
34 "//net:test_support", | 39 "//net:test_support", |
35 "//testing/gtest", | 40 "//testing/gtest", |
36 ] | 41 ] |
37 } | 42 } |
OLD | NEW |