OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 action("bake_in_configs") { | 5 action("bake_in_configs") { |
6 visibility = ":*" | 6 visibility = ":*" |
7 script = "bake_in_configs.py" | 7 script = "bake_in_configs.py" |
8 | 8 |
9 inputs = [ | 9 inputs = [ |
10 "baked_in_configs/apis_google_com.json", | 10 "baked_in_configs/apis_google_com.json", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 ":bake_in_configs", | 55 ":bake_in_configs", |
56 "//base", | 56 "//base", |
57 "//components/keyed_service/core", | 57 "//components/keyed_service/core", |
58 "//content/public/browser", | 58 "//content/public/browser", |
59 "//net", | 59 "//net", |
60 "//url", | 60 "//url", |
61 ] | 61 ] |
62 } | 62 } |
| 63 |
| 64 source_set("unit_tests") { |
| 65 sources = [ |
| 66 "config_unittest.cc", |
| 67 "context_unittest.cc", |
| 68 "dispatcher_unittest.cc", |
| 69 "monitor_unittest.cc", |
| 70 "scheduler_unittest.cc", |
| 71 "test_util.cc", |
| 72 "test_util.h", |
| 73 "uploader_unittest.cc", |
| 74 "util_unittest.cc", |
| 75 ] |
| 76 |
| 77 deps = [ |
| 78 ":domain_reliability", |
| 79 "//testing/gtest", |
| 80 ] |
| 81 } |
OLD | NEW |