| 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 static_library("certificate_transparency") { |
| 6 sources = [ | 6 sources = [ |
| 7 "ct_policy_manager.cc", | 7 "ct_policy_manager.cc", |
| 8 "ct_policy_manager.h", | 8 "ct_policy_manager.h", |
| 9 "log_dns_client.cc", | 9 "log_dns_client.cc", |
| 10 "log_dns_client.h", | 10 "log_dns_client.h", |
| 11 "log_proof_fetcher.cc", | 11 "log_proof_fetcher.cc", |
| 12 "log_proof_fetcher.h", | 12 "log_proof_fetcher.h", |
| 13 "pref_names.cc", | 13 "pref_names.cc", |
| 14 "pref_names.h", | 14 "pref_names.h", |
| 15 "single_tree_tracker.cc", | 15 "single_tree_tracker.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 42 deps = [ | 42 deps = [ |
| 43 ":certificate_transparency", | 43 ":certificate_transparency", |
| 44 "//base/test:test_support", | 44 "//base/test:test_support", |
| 45 "//components/prefs:test_support", | 45 "//components/prefs:test_support", |
| 46 "//components/safe_json:test_support", | 46 "//components/safe_json:test_support", |
| 47 "//net:test_support", | 47 "//net:test_support", |
| 48 "//testing/gmock", | 48 "//testing/gmock", |
| 49 "//testing/gtest", | 49 "//testing/gtest", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| OLD | NEW |