Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 # This config sets the define that controls which Wallet service to contact 7 # This config sets the define that controls which Wallet service to contact
8 # for features using Wallet integration. Unofficial builds won't have the 8 # for features using Wallet integration. Unofficial builds won't have the
9 # proper API keys so it uses the "sandbox" test servers instead. 9 # proper API keys so it uses the "sandbox" test servers instead.
10 config("wallet_service") { 10 config("wallet_service") {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 "//components/variations/net", 173 "//components/variations/net",
174 "//components/webdata/common", 174 "//components/webdata/common",
175 "//google_apis", 175 "//google_apis",
176 "//net", 176 "//net",
177 "//skia", 177 "//skia",
178 "//sql", 178 "//sql",
179 "//sync", 179 "//sync",
180 "//third_party/fips181", 180 "//third_party/fips181",
181 "//third_party/icu", 181 "//third_party/icu",
182 "//third_party/libaddressinput:util", 182 "//third_party/libaddressinput:util",
183 "//third_party/libjingle",
183 "//third_party/libphonenumber", 184 "//third_party/libphonenumber",
184 "//third_party/libjingle",
185 "//ui/base", 185 "//ui/base",
186 "//ui/gfx", 186 "//ui/gfx",
187 "//ui/gfx/geometry", 187 "//ui/gfx/geometry",
188 "//url", 188 "//url",
189 ] 189 ]
190 190
191 configs += [ 191 configs += [
192 ":wallet_service", 192 ":wallet_service",
193 "//build/config/compiler:no_size_t_to_int_warning", 193 "//build/config/compiler:no_size_t_to_int_warning",
194 ] 194 ]
(...skipping 15 matching lines...) Expand all
210 "test_autofill_client.h", 210 "test_autofill_client.h",
211 "test_autofill_driver.cc", 211 "test_autofill_driver.cc",
212 "test_autofill_driver.h", 212 "test_autofill_driver.h",
213 "test_autofill_external_delegate.cc", 213 "test_autofill_external_delegate.cc",
214 "test_autofill_external_delegate.h", 214 "test_autofill_external_delegate.h",
215 "test_personal_data_manager.cc", 215 "test_personal_data_manager.cc",
216 "test_personal_data_manager.h", 216 "test_personal_data_manager.h",
217 ] 217 ]
218 218
219 deps = [ 219 deps = [
220 ":browser",
220 "//base", 221 "//base",
221 "//base/test:test_support",
222 "//base:prefs", 222 "//base:prefs",
223 "//base:prefs_test_support", 223 "//base:prefs_test_support",
224 "//base/test:test_support",
224 "//components/autofill/core/browser", 225 "//components/autofill/core/browser",
225 "//components/autofill/core/common", 226 "//components/autofill/core/common",
226 "//components/os_crypt", 227 "//components/os_crypt",
227 "//components/pref_registry", 228 "//components/pref_registry",
228 "//components/rappor", 229 "//components/rappor",
229 "//components/rappor:test_support", 230 "//components/rappor:test_support",
230 "//components/signin/core/browser", 231 "//components/signin/core/browser",
231 "//components/signin/core/common", 232 "//components/signin/core/common",
232 "//google_apis:test_support", 233 "//google_apis:test_support",
233 "//skia", 234 "//skia",
234 "//testing/gtest", 235 "//testing/gtest",
236 "//ui/gfx:test_support",
235 "//ui/gfx/geometry", 237 "//ui/gfx/geometry",
236 "//ui/gfx:test_support",
237 ":browser",
238 ] 238 ]
239 } 239 }
240 240
241 source_set("unit_tests") { 241 source_set("unit_tests") {
242 testonly = true 242 testonly = true
243 sources = [ 243 sources = [
244 "address_field_unittest.cc", 244 "address_field_unittest.cc",
245 "address_i18n_unittest.cc", 245 "address_i18n_unittest.cc",
246 "address_unittest.cc", 246 "address_unittest.cc",
247 "autocomplete_history_manager_unittest.cc", 247 "autocomplete_history_manager_unittest.cc",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 "//components/webdata_services:test_support", 301 "//components/webdata_services:test_support",
302 "//google_apis", 302 "//google_apis",
303 "//google_apis:test_support", 303 "//google_apis:test_support",
304 "//net:test_support", 304 "//net:test_support",
305 "//sql", 305 "//sql",
306 "//sync", 306 "//sync",
307 "//sync:test_support_sync_api", 307 "//sync:test_support_sync_api",
308 "//testing/gmock", 308 "//testing/gmock",
309 "//testing/gtest", 309 "//testing/gtest",
310 "//third_party/libaddressinput:util", 310 "//third_party/libaddressinput:util",
311 "//third_party/libjingle",
311 "//third_party/libphonenumber", 312 "//third_party/libphonenumber",
312 "//third_party/libjingle",
313 "//ui/base", 313 "//ui/base",
314 "//url", 314 "//url",
315 ] 315 ]
316 } 316 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698