| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//components/variations/net", | 164 "//components/variations/net", |
| 165 "//components/webdata/common", | 165 "//components/webdata/common", |
| 166 "//google_apis", | 166 "//google_apis", |
| 167 "//net", | 167 "//net", |
| 168 "//skia", | 168 "//skia", |
| 169 "//sql", | 169 "//sql", |
| 170 "//sync", | 170 "//sync", |
| 171 "//third_party/fips181", | 171 "//third_party/fips181", |
| 172 "//third_party/icu", | 172 "//third_party/icu", |
| 173 "//third_party/libaddressinput:util", | 173 "//third_party/libaddressinput:util", |
| 174 "//third_party/libjingle", |
| 174 "//third_party/libphonenumber", | 175 "//third_party/libphonenumber", |
| 175 "//third_party/libjingle", | |
| 176 "//ui/base", | 176 "//ui/base", |
| 177 "//ui/gfx", | 177 "//ui/gfx", |
| 178 "//ui/gfx/geometry", | 178 "//ui/gfx/geometry", |
| 179 "//url", | 179 "//url", |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 configs += [ | 182 configs += [ |
| 183 ":wallet_service", | 183 ":wallet_service", |
| 184 "//build/config/compiler:no_size_t_to_int_warning", | 184 "//build/config/compiler:no_size_t_to_int_warning", |
| 185 ] | 185 ] |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 "//components/webdata_services:test_support", | 291 "//components/webdata_services:test_support", |
| 292 "//google_apis", | 292 "//google_apis", |
| 293 "//google_apis:test_support", | 293 "//google_apis:test_support", |
| 294 "//net:test_support", | 294 "//net:test_support", |
| 295 "//sql", | 295 "//sql", |
| 296 "//sync", | 296 "//sync", |
| 297 "//sync:test_support_sync_api", | 297 "//sync:test_support_sync_api", |
| 298 "//testing/gmock", | 298 "//testing/gmock", |
| 299 "//testing/gtest", | 299 "//testing/gtest", |
| 300 "//third_party/libaddressinput:util", | 300 "//third_party/libaddressinput:util", |
| 301 "//third_party/libjingle", |
| 301 "//third_party/libphonenumber", | 302 "//third_party/libphonenumber", |
| 302 "//third_party/libjingle", | |
| 303 "//ui/base", | 303 "//ui/base", |
| 304 "//url", | 304 "//url", |
| 305 ] | 305 ] |
| 306 } | 306 } |
| OLD | NEW |