| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "clear_mode.h", | 48 "clear_mode.h", |
| 49 "config.cc", | 49 "config.cc", |
| 50 "config.h", | 50 "config.h", |
| 51 "context.cc", | 51 "context.cc", |
| 52 "context.h", | 52 "context.h", |
| 53 "context_manager.cc", | 53 "context_manager.cc", |
| 54 "context_manager.h", | 54 "context_manager.h", |
| 55 "dispatcher.cc", | 55 "dispatcher.cc", |
| 56 "dispatcher.h", | 56 "dispatcher.h", |
| 57 "domain_reliability_export.h", | 57 "domain_reliability_export.h", |
| 58 "google_configs.cc", |
| 59 "google_configs.h", |
| 58 "monitor.cc", | 60 "monitor.cc", |
| 59 "monitor.h", | 61 "monitor.h", |
| 60 "scheduler.cc", | 62 "scheduler.cc", |
| 61 "scheduler.h", | 63 "scheduler.h", |
| 62 "service.cc", | 64 "service.cc", |
| 63 "service.h", | 65 "service.h", |
| 64 "uploader.cc", | 66 "uploader.cc", |
| 65 "uploader.h", | 67 "uploader.h", |
| 66 "util.cc", | 68 "util.cc", |
| 67 "util.h", | 69 "util.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 79 "//url", | 81 "//url", |
| 80 ] | 82 ] |
| 81 } | 83 } |
| 82 | 84 |
| 83 source_set("unit_tests") { | 85 source_set("unit_tests") { |
| 84 testonly = true | 86 testonly = true |
| 85 sources = [ | 87 sources = [ |
| 86 "config_unittest.cc", | 88 "config_unittest.cc", |
| 87 "context_unittest.cc", | 89 "context_unittest.cc", |
| 88 "dispatcher_unittest.cc", | 90 "dispatcher_unittest.cc", |
| 91 "google_configs_unittest.cc", |
| 89 "monitor_unittest.cc", | 92 "monitor_unittest.cc", |
| 90 "scheduler_unittest.cc", | 93 "scheduler_unittest.cc", |
| 91 "test_util.cc", | 94 "test_util.cc", |
| 92 "test_util.h", | 95 "test_util.h", |
| 93 "uploader_unittest.cc", | 96 "uploader_unittest.cc", |
| 94 "util_unittest.cc", | 97 "util_unittest.cc", |
| 95 ] | 98 ] |
| 96 | 99 |
| 97 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 100 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 98 | 101 |
| 99 deps = [ | 102 deps = [ |
| 100 ":domain_reliability", | 103 ":domain_reliability", |
| 101 "//base", | 104 "//base", |
| 102 "//base/test:test_support", | 105 "//base/test:test_support", |
| 103 "//net:test_support", | 106 "//net:test_support", |
| 104 "//testing/gtest", | 107 "//testing/gtest", |
| 105 ] | 108 ] |
| 106 } | 109 } |
| OLD | NEW |