OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
7 | 7 |
8 declare_args() { | 8 declare_args() { |
9 google_test_gaia_client_id = "" | 9 google_test_gaia_client_id = "" |
10 google_test_gaia_client_secret = "" | 10 google_test_gaia_client_secret = "" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "//components/keyed_service/core", | 81 "//components/keyed_service/core", |
82 "//components/keyed_service/ios", | 82 "//components/keyed_service/ios", |
83 "//components/metrics", | 83 "//components/metrics", |
84 "//components/metrics_services_manager", | 84 "//components/metrics_services_manager", |
85 "//components/net_log", | 85 "//components/net_log", |
86 "//components/network_session_configurator", | 86 "//components/network_session_configurator", |
87 "//components/ntp_tiles", | 87 "//components/ntp_tiles", |
88 "//components/pref_registry", | 88 "//components/pref_registry", |
89 "//components/prefs", | 89 "//components/prefs", |
90 "//components/proxy_config", | 90 "//components/proxy_config", |
91 "//components/reading_list", | 91 "//components/reading_list/core", |
| 92 "//components/reading_list/ios", |
92 "//components/search_engines", | 93 "//components/search_engines", |
93 "//components/signin/core/browser", | 94 "//components/signin/core/browser", |
94 "//components/ssl_config", | 95 "//components/ssl_config", |
95 "//components/translate/core/browser", | 96 "//components/translate/core/browser", |
96 "//components/url_formatter", | 97 "//components/url_formatter", |
97 "//components/variations", | 98 "//components/variations", |
98 "//components/variations/service", | 99 "//components/variations/service", |
99 "//components/version_info", | 100 "//components/version_info", |
100 "//components/webdata_services", | 101 "//components/webdata_services", |
101 "//ios/chrome/browser/browser_state", | 102 "//ios/chrome/browser/browser_state", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 ] | 188 ] |
188 | 189 |
189 deps = [ | 190 deps = [ |
190 ":browser", | 191 ":browser", |
191 "//base", | 192 "//base", |
192 "//components/autofill/core/common", | 193 "//components/autofill/core/common", |
193 "//components/dom_distiller/core", | 194 "//components/dom_distiller/core", |
194 "//components/flags_ui", | 195 "//components/flags_ui", |
195 "//components/flags_ui:switches", | 196 "//components/flags_ui:switches", |
196 "//components/ntp_tiles", | 197 "//components/ntp_tiles", |
197 "//components/reading_list", | 198 "//components/reading_list/core", |
198 "//components/strings", | 199 "//components/strings", |
199 "//components/sync", | 200 "//components/sync", |
200 "//components/variations", | 201 "//components/variations", |
201 "//google_apis", | 202 "//google_apis", |
202 "//ios/chrome/app/strings", | 203 "//ios/chrome/app/strings", |
203 "//ios/web", | 204 "//ios/web", |
204 "//ios/web:user_agent", | 205 "//ios/web:user_agent", |
205 ] | 206 ] |
206 | 207 |
207 defines = [ | 208 defines = [ |
(...skipping 27 matching lines...) Expand all Loading... |
235 "//components/proxy_config", | 236 "//components/proxy_config", |
236 "//components/ssl_config", | 237 "//components/ssl_config", |
237 "//components/variations", | 238 "//components/variations", |
238 "//ios/web:test_support", | 239 "//ios/web:test_support", |
239 "//net", | 240 "//net", |
240 "//net:test_support", | 241 "//net:test_support", |
241 "//testing/gtest", | 242 "//testing/gtest", |
242 "//url", | 243 "//url", |
243 ] | 244 ] |
244 } | 245 } |
OLD | NEW |