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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "util.cc", | 60 "util.cc", |
61 "util.h", | 61 "util.h", |
62 ] | 62 ] |
63 sources += get_target_outputs(":bake_in_configs") | 63 sources += get_target_outputs(":bake_in_configs") |
64 | 64 |
65 defines = [ "DOMAIN_RELIABILITY_IMPLEMENTATION" ] | 65 defines = [ "DOMAIN_RELIABILITY_IMPLEMENTATION" ] |
66 | 66 |
67 deps = [ | 67 deps = [ |
68 ":bake_in_configs", | 68 ":bake_in_configs", |
69 "//base", | 69 "//base", |
| 70 "//components/data_use_measurement/core", |
70 "//components/keyed_service/core", | 71 "//components/keyed_service/core", |
71 "//content/public/browser", | 72 "//content/public/browser", |
72 "//net", | 73 "//net", |
73 "//url", | 74 "//url", |
74 ] | 75 ] |
75 } | 76 } |
76 | 77 |
77 source_set("unit_tests") { | 78 source_set("unit_tests") { |
78 testonly = true | 79 testonly = true |
79 sources = [ | 80 sources = [ |
(...skipping 11 matching lines...) Expand all Loading... |
91 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
92 | 93 |
93 deps = [ | 94 deps = [ |
94 ":domain_reliability", | 95 ":domain_reliability", |
95 "//base", | 96 "//base", |
96 "//base/test:test_support", | 97 "//base/test:test_support", |
97 "//net:test_support", | 98 "//net:test_support", |
98 "//testing/gtest", | 99 "//testing/gtest", |
99 ] | 100 ] |
100 } | 101 } |
OLD | NEW |