| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "context_unittest.cc", | 79 "context_unittest.cc", |
| 80 "dispatcher_unittest.cc", | 80 "dispatcher_unittest.cc", |
| 81 "monitor_unittest.cc", | 81 "monitor_unittest.cc", |
| 82 "scheduler_unittest.cc", | 82 "scheduler_unittest.cc", |
| 83 "test_util.cc", | 83 "test_util.cc", |
| 84 "test_util.h", | 84 "test_util.h", |
| 85 "uploader_unittest.cc", | 85 "uploader_unittest.cc", |
| 86 "util_unittest.cc", | 86 "util_unittest.cc", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 90 |
| 89 deps = [ | 91 deps = [ |
| 90 ":domain_reliability", | 92 ":domain_reliability", |
| 91 "//base", | 93 "//base", |
| 92 "//base/test:test_support", | 94 "//base/test:test_support", |
| 93 "//net:test_support", | 95 "//net:test_support", |
| 94 "//testing/gtest", | 96 "//testing/gtest", |
| 95 ] | 97 ] |
| 96 } | 98 } |
| OLD | NEW |