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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 # These values are duplicated in the GYP build in: | 7 # These values are duplicated in the GYP build in: |
8 # //components/precache/precache_defines.gypi | 8 # //components/precache/precache_defines.gypi |
9 precache_config_settings_url = | 9 precache_config_settings_url = |
10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config" | 10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config" |
(...skipping 25 matching lines...) Expand all Loading... |
36 ] | 36 ] |
37 | 37 |
38 # Note the GYP build sets this as direct dependent settings, but this is | 38 # Note the GYP build sets this as direct dependent settings, but this is |
39 # only used to share the settings with the unit tests. Instead, we just | 39 # only used to share the settings with the unit tests. Instead, we just |
40 # set this config for the necessary targets manually. | 40 # set this config for the necessary targets manually. |
41 configs += [ ":precache_config" ] | 41 configs += [ ":precache_config" ] |
42 | 42 |
43 deps = [ | 43 deps = [ |
44 ":proto", | 44 ":proto", |
45 "//base", | 45 "//base", |
| 46 "//components/data_use_measurement/core", |
46 "//components/history/core/browser", | 47 "//components/history/core/browser", |
47 "//components/prefs", | 48 "//components/prefs", |
48 "//net", | 49 "//net", |
49 "//sql", | 50 "//sql", |
50 "//url", | 51 "//url", |
51 ] | 52 ] |
52 } | 53 } |
53 | 54 |
54 proto_library("proto") { | 55 proto_library("proto") { |
55 sources = [ | 56 sources = [ |
(...skipping 22 matching lines...) Expand all Loading... |
78 ":proto", | 79 ":proto", |
79 "//base", | 80 "//base", |
80 "//base/test:test_support", | 81 "//base/test:test_support", |
81 "//components/history/core/browser", | 82 "//components/history/core/browser", |
82 "//net:test_support", | 83 "//net:test_support", |
83 "//sql", | 84 "//sql", |
84 "//testing/gmock", | 85 "//testing/gmock", |
85 "//testing/gtest", | 86 "//testing/gtest", |
86 ] | 87 ] |
87 } | 88 } |
OLD | NEW |