| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 # This config sets the define that controls which Payments service to contact | 7 # This config sets the define that controls which Payments service to contact |
| 8 # for features using Payments integration. Unofficial builds won't have the | 8 # for features using Payments 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("payments_service") { | 10 config("payments_service") { |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 public_deps = [ | 238 public_deps = [ |
| 239 ":browser", | 239 ":browser", |
| 240 ] | 240 ] |
| 241 | 241 |
| 242 deps = [ | 242 deps = [ |
| 243 "//base", | 243 "//base", |
| 244 "//base/test:test_support", | 244 "//base/test:test_support", |
| 245 "//components/autofill/core/browser", | 245 "//components/autofill/core/browser", |
| 246 "//components/autofill/core/common", | 246 "//components/autofill/core/common", |
| 247 "//components/os_crypt", | 247 "//components/os_crypt", |
| 248 "//components/os_crypt:test_support", |
| 248 "//components/pref_registry", | 249 "//components/pref_registry", |
| 249 "//components/prefs:test_support", | 250 "//components/prefs:test_support", |
| 250 "//components/rappor", | 251 "//components/rappor", |
| 251 "//components/rappor:test_support", | 252 "//components/rappor:test_support", |
| 252 "//components/signin/core/browser", | 253 "//components/signin/core/browser", |
| 253 "//components/signin/core/common", | 254 "//components/signin/core/common", |
| 254 "//google_apis:test_support", | 255 "//google_apis:test_support", |
| 255 "//skia", | 256 "//skia", |
| 256 "//testing/gtest", | 257 "//testing/gtest", |
| 257 "//ui/gfx:test_support", | 258 "//ui/gfx:test_support", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 ] | 328 ] |
| 328 | 329 |
| 329 deps = [ | 330 deps = [ |
| 330 ":browser", | 331 ":browser", |
| 331 ":test_support", | 332 ":test_support", |
| 332 ":unit_tests_bundle_data", | 333 ":unit_tests_bundle_data", |
| 333 "//base", | 334 "//base", |
| 334 "//base/test:test_support", | 335 "//base/test:test_support", |
| 335 "//components/autofill/core/common", | 336 "//components/autofill/core/common", |
| 336 "//components/os_crypt", | 337 "//components/os_crypt", |
| 338 "//components/os_crypt:test_support", |
| 337 "//components/prefs:test_support", | 339 "//components/prefs:test_support", |
| 338 "//components/rappor:test_support", | 340 "//components/rappor:test_support", |
| 339 "//components/resources", | 341 "//components/resources", |
| 340 "//components/signin/core/browser", | 342 "//components/signin/core/browser", |
| 341 "//components/signin/core/browser:test_support", | 343 "//components/signin/core/browser:test_support", |
| 342 "//components/signin/core/common", | 344 "//components/signin/core/common", |
| 343 "//components/strings", | 345 "//components/strings", |
| 344 "//components/sync_driver", | 346 "//components/sync_driver", |
| 345 "//components/sync_driver:test_support", | 347 "//components/sync_driver:test_support", |
| 346 "//components/variations", | 348 "//components/variations", |
| 347 "//components/webdata/common", | 349 "//components/webdata/common", |
| 348 "//components/webdata_services:test_support", | 350 "//components/webdata_services:test_support", |
| 349 "//google_apis", | 351 "//google_apis", |
| 350 "//google_apis:test_support", | 352 "//google_apis:test_support", |
| 351 "//net:test_support", | 353 "//net:test_support", |
| 352 "//sql", | 354 "//sql", |
| 353 "//sync", | 355 "//sync", |
| 354 "//sync:test_support_sync_api", | 356 "//sync:test_support_sync_api", |
| 355 "//testing/gmock", | 357 "//testing/gmock", |
| 356 "//testing/gtest", | 358 "//testing/gtest", |
| 357 "//third_party/libaddressinput:util", | 359 "//third_party/libaddressinput:util", |
| 358 "//third_party/libphonenumber", | 360 "//third_party/libphonenumber", |
| 359 "//ui/base", | 361 "//ui/base", |
| 360 "//url", | 362 "//url", |
| 361 ] | 363 ] |
| 362 } | 364 } |
| OLD | NEW |