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 "ct_policy_manager.cc", |
| 8 "ct_policy_manager.h", |
7 "log_proof_fetcher.cc", | 9 "log_proof_fetcher.cc", |
8 "log_proof_fetcher.h", | 10 "log_proof_fetcher.h", |
| 11 "pref_names.cc", |
| 12 "pref_names.h", |
9 "single_tree_tracker.cc", | 13 "single_tree_tracker.cc", |
10 "single_tree_tracker.h", | 14 "single_tree_tracker.h", |
11 "tree_state_tracker.cc", | 15 "tree_state_tracker.cc", |
12 "tree_state_tracker.h", | 16 "tree_state_tracker.h", |
13 ] | 17 ] |
14 | 18 |
15 deps = [ | 19 deps = [ |
16 "//base", | 20 "//base", |
| 21 "//components/prefs", |
17 "//components/safe_json", | 22 "//components/safe_json", |
| 23 "//components/url_formatter", |
| 24 "//components/url_matcher", |
18 "//net", | 25 "//net", |
19 "//url", | 26 "//url", |
20 ] | 27 ] |
21 } | 28 } |
22 | 29 |
23 source_set("unit_tests") { | 30 source_set("unit_tests") { |
24 testonly = true | 31 testonly = true |
25 sources = [ | 32 sources = [ |
| 33 "ct_policy_manager_unittest.cc", |
26 "log_proof_fetcher_unittest.cc", | 34 "log_proof_fetcher_unittest.cc", |
27 "single_tree_tracker_unittest.cc", | 35 "single_tree_tracker_unittest.cc", |
28 ] | 36 ] |
29 | 37 |
30 deps = [ | 38 deps = [ |
31 ":certificate_transparency", | 39 ":certificate_transparency", |
32 "//base/test:test_support", | 40 "//base/test:test_support", |
| 41 "//components/prefs:test_support", |
33 "//components/safe_json:test_support", | 42 "//components/safe_json:test_support", |
34 "//net:test_support", | 43 "//net:test_support", |
35 "//testing/gtest", | 44 "//testing/gtest", |
36 ] | 45 ] |
37 } | 46 } |
OLD | NEW |