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 # Paths to the JSON files are kind of gross. They're stored in the gypi | 5 # Paths to the JSON files are kind of gross. They're stored in the gypi |
6 # relative to //components, since that's the working directory gyp seems | 6 # relative to //components, since that's the working directory gyp seems |
7 # to use for all of the components. When we depend on them here, we need | 7 # to use for all of the components. When we depend on them here, we need |
8 # to remove the leading domain_reliability, since *our* working directory | 8 # to remove the leading domain_reliability, since *our* working directory |
9 # is one level deeper. When we call bake_in_configs.py, we need to give | 9 # is one level deeper. When we call bake_in_configs.py, we need to give |
10 # it a properly-rebased path to //components so it can properly join the | 10 # it a properly-rebased path to //components so it can properly join the |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "clear_mode.h", | 42 "clear_mode.h", |
43 "config.cc", | 43 "config.cc", |
44 "config.h", | 44 "config.h", |
45 "context.cc", | 45 "context.cc", |
46 "context.h", | 46 "context.h", |
47 "context_manager.cc", | 47 "context_manager.cc", |
48 "context_manager.h", | 48 "context_manager.h", |
49 "dispatcher.cc", | 49 "dispatcher.cc", |
50 "dispatcher.h", | 50 "dispatcher.h", |
51 "domain_reliability_export.h", | 51 "domain_reliability_export.h", |
| 52 "google_configs.cc", |
| 53 "google_configs.h", |
52 "monitor.cc", | 54 "monitor.cc", |
53 "monitor.h", | 55 "monitor.h", |
54 "scheduler.cc", | 56 "scheduler.cc", |
55 "scheduler.h", | 57 "scheduler.h", |
56 "service.cc", | 58 "service.cc", |
57 "service.h", | 59 "service.h", |
58 "uploader.cc", | 60 "uploader.cc", |
59 "uploader.h", | 61 "uploader.h", |
60 "util.cc", | 62 "util.cc", |
61 "util.h", | 63 "util.h", |
(...skipping 12 matching lines...) Expand all Loading... |
74 "//url", | 76 "//url", |
75 ] | 77 ] |
76 } | 78 } |
77 | 79 |
78 source_set("unit_tests") { | 80 source_set("unit_tests") { |
79 testonly = true | 81 testonly = true |
80 sources = [ | 82 sources = [ |
81 "config_unittest.cc", | 83 "config_unittest.cc", |
82 "context_unittest.cc", | 84 "context_unittest.cc", |
83 "dispatcher_unittest.cc", | 85 "dispatcher_unittest.cc", |
| 86 "google_configs_unittest.cc", |
84 "monitor_unittest.cc", | 87 "monitor_unittest.cc", |
85 "scheduler_unittest.cc", | 88 "scheduler_unittest.cc", |
86 "test_util.cc", | 89 "test_util.cc", |
87 "test_util.h", | 90 "test_util.h", |
88 "uploader_unittest.cc", | 91 "uploader_unittest.cc", |
89 "util_unittest.cc", | 92 "util_unittest.cc", |
90 ] | 93 ] |
91 | 94 |
92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 95 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
93 | 96 |
94 deps = [ | 97 deps = [ |
95 ":domain_reliability", | 98 ":domain_reliability", |
96 "//base", | 99 "//base", |
97 "//base/test:test_support", | 100 "//base/test:test_support", |
98 "//net:test_support", | 101 "//net:test_support", |
99 "//testing/gtest", | 102 "//testing/gtest", |
100 ] | 103 ] |
101 } | 104 } |
OLD | NEW |