| 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") { |
| 11 if (is_official_build) { | 11 if (is_official_build) { |
| 12 defines = [ "ENABLE_PROD_WALLET_SERVICE=1" ] | 12 defines = [ "ENABLE_PROD_WALLET_SERVICE=1" ] |
| 13 } | 13 } |
| 14 } | 14 } |
| 15 | 15 |
| 16 # GYP version: components/autofill.gyp:autofill_core_browser | 16 # GYP version: components/autofill.gyp:autofill_core_browser |
| 17 source_set("browser") { | 17 source_set("browser") { |
| 18 sources = [ | 18 sources = [ |
| 19 "address.cc", | 19 "address.cc", |
| 20 "address.h", | 20 "address.h", |
| 21 "address_field.cc", | 21 "address_field.cc", |
| 22 "address_field.h", | 22 "address_field.h", |
| 23 "address_i18n.cc", | 23 "address_i18n.cc", |
| 24 "address_i18n.h", | 24 "address_i18n.h", |
| 25 "autocomplete_history_manager.cc", | 25 "autocomplete_history_manager.cc", |
| 26 "autocomplete_history_manager.h", | 26 "autocomplete_history_manager.h", |
| 27 "autofill-inl.h", | 27 "autofill-inl.h", |
| 28 "autofill_cc_infobar_delegate.cc", | |
| 29 "autofill_cc_infobar_delegate.h", | |
| 30 "autofill_client.h", | 28 "autofill_client.h", |
| 31 "autofill_country.cc", | 29 "autofill_country.cc", |
| 32 "autofill_country.h", | 30 "autofill_country.h", |
| 33 "autofill_data_model.cc", | 31 "autofill_data_model.cc", |
| 34 "autofill_data_model.h", | 32 "autofill_data_model.h", |
| 35 "autofill_data_util.cc", | 33 "autofill_data_util.cc", |
| 36 "autofill_data_util.h", | 34 "autofill_data_util.h", |
| 37 "autofill_download_manager.cc", | 35 "autofill_download_manager.cc", |
| 38 "autofill_download_manager.h", | 36 "autofill_download_manager.h", |
| 39 "autofill_driver.h", | 37 "autofill_driver.h", |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "//sync", | 323 "//sync", |
| 326 "//sync:test_support_sync_api", | 324 "//sync:test_support_sync_api", |
| 327 "//testing/gmock", | 325 "//testing/gmock", |
| 328 "//testing/gtest", | 326 "//testing/gtest", |
| 329 "//third_party/libaddressinput:util", | 327 "//third_party/libaddressinput:util", |
| 330 "//third_party/libphonenumber", | 328 "//third_party/libphonenumber", |
| 331 "//ui/base", | 329 "//ui/base", |
| 332 "//url", | 330 "//url", |
| 333 ] | 331 ] |
| 334 } | 332 } |
| OLD | NEW |