| 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_proof_fetcher.cc", | 7 "log_proof_fetcher.cc", |
| 8 "log_proof_fetcher.h", | 8 "log_proof_fetcher.h", |
| 9 "observed_leaf.cc", |
| 10 "observed_leaf.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", |
| 17 "//components/safe_json", | 19 "//components/safe_json", |
| 18 "//net", | 20 "//net", |
| 19 "//url", | 21 "//url", |
| 20 ] | 22 ] |
| 21 } | 23 } |
| 22 | 24 |
| 23 source_set("unit_tests") { | 25 source_set("unit_tests") { |
| 24 testonly = true | 26 testonly = true |
| 25 sources = [ | 27 sources = [ |
| 26 "log_proof_fetcher_unittest.cc", | 28 "log_proof_fetcher_unittest.cc", |
| 27 "single_tree_tracker_unittest.cc", | 29 "single_tree_tracker_unittest.cc", |
| 28 ] | 30 ] |
| 29 | 31 |
| 30 deps = [ | 32 deps = [ |
| 31 ":certificate_transparency", | 33 ":certificate_transparency", |
| 32 "//base/test:test_support", | 34 "//base/test:test_support", |
| 33 "//components/safe_json:test_support", | 35 "//components/safe_json:test_support", |
| 34 "//net:test_support", | 36 "//net:test_support", |
| 35 "//testing/gtest", | 37 "//testing/gtest", |
| 36 ] | 38 ] |
| 37 } | 39 } |
| OLD | NEW |