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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 "//sql", | 190 "//sql", |
191 "//sync", | 191 "//sync", |
192 "//third_party/fips181", | 192 "//third_party/fips181", |
193 "//third_party/icu", | 193 "//third_party/icu", |
194 "//third_party/libaddressinput:util", | 194 "//third_party/libaddressinput:util", |
195 "//third_party/libphonenumber", | 195 "//third_party/libphonenumber", |
196 "//third_party/re2", | 196 "//third_party/re2", |
197 "//ui/base", | 197 "//ui/base", |
198 "//ui/gfx", | 198 "//ui/gfx", |
199 "//ui/gfx/geometry", | 199 "//ui/gfx/geometry", |
| 200 "//ui/gfx/range", |
200 "//url", | 201 "//url", |
201 ] | 202 ] |
202 | 203 |
203 public_deps = [ | 204 public_deps = [ |
204 "//components/autofill/core/browser/proto", | 205 "//components/autofill/core/browser/proto", |
205 ] | 206 ] |
206 | 207 |
207 configs += [ | 208 configs += [ |
208 ":wallet_service", | 209 ":wallet_service", |
209 "//build/config/compiler:no_size_t_to_int_warning", | 210 "//build/config/compiler:no_size_t_to_int_warning", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 "//sync", | 350 "//sync", |
350 "//sync:test_support_sync_api", | 351 "//sync:test_support_sync_api", |
351 "//testing/gmock", | 352 "//testing/gmock", |
352 "//testing/gtest", | 353 "//testing/gtest", |
353 "//third_party/libaddressinput:util", | 354 "//third_party/libaddressinput:util", |
354 "//third_party/libphonenumber", | 355 "//third_party/libphonenumber", |
355 "//ui/base", | 356 "//ui/base", |
356 "//url", | 357 "//url", |
357 ] | 358 ] |
358 } | 359 } |
OLD | NEW |