| 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 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "//google_apis", | 186 "//google_apis", |
| 187 "//net", | 187 "//net", |
| 188 "//skia", | 188 "//skia", |
| 189 "//sql", | 189 "//sql", |
| 190 "//sync", | 190 "//sync", |
| 191 "//third_party/fips181", | 191 "//third_party/fips181", |
| 192 "//third_party/icu", | 192 "//third_party/icu", |
| 193 "//third_party/libaddressinput:util", | 193 "//third_party/libaddressinput:util", |
| 194 "//third_party/libphonenumber", | 194 "//third_party/libphonenumber", |
| 195 "//third_party/re2", | 195 "//third_party/re2", |
| 196 "//third_party/zlib:compression_utils", | |
| 197 "//ui/base", | 196 "//ui/base", |
| 198 "//ui/gfx", | 197 "//ui/gfx", |
| 199 "//ui/gfx/geometry", | 198 "//ui/gfx/geometry", |
| 200 "//url", | 199 "//url", |
| 201 ] | 200 ] |
| 202 | 201 |
| 203 configs += [ | 202 configs += [ |
| 204 ":wallet_service", | 203 ":wallet_service", |
| 205 "//build/config/compiler:no_size_t_to_int_warning", | 204 "//build/config/compiler:no_size_t_to_int_warning", |
| 206 ] | 205 ] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 "//google_apis", | 317 "//google_apis", |
| 319 "//google_apis:test_support", | 318 "//google_apis:test_support", |
| 320 "//net:test_support", | 319 "//net:test_support", |
| 321 "//sql", | 320 "//sql", |
| 322 "//sync", | 321 "//sync", |
| 323 "//sync:test_support_sync_api", | 322 "//sync:test_support_sync_api", |
| 324 "//testing/gmock", | 323 "//testing/gmock", |
| 325 "//testing/gtest", | 324 "//testing/gtest", |
| 326 "//third_party/libaddressinput:util", | 325 "//third_party/libaddressinput:util", |
| 327 "//third_party/libphonenumber", | 326 "//third_party/libphonenumber", |
| 328 "//third_party/zlib:compression_utils", | |
| 329 "//ui/base", | 327 "//ui/base", |
| 330 "//url", | 328 "//url", |
| 331 ] | 329 ] |
| 332 } | 330 } |
| OLD | NEW |