| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "autofill_profile.h", | 53 "autofill_profile.h", |
| 54 "autofill_regex_constants.cc", | 54 "autofill_regex_constants.cc", |
| 55 "autofill_regex_constants.h", | 55 "autofill_regex_constants.h", |
| 56 "autofill_scanner.cc", | 56 "autofill_scanner.cc", |
| 57 "autofill_scanner.h", | 57 "autofill_scanner.h", |
| 58 "autofill_server_field_info.h", | 58 "autofill_server_field_info.h", |
| 59 "autofill_sync_constants.cc", | 59 "autofill_sync_constants.cc", |
| 60 "autofill_sync_constants.h", | 60 "autofill_sync_constants.h", |
| 61 "autofill_type.cc", | 61 "autofill_type.cc", |
| 62 "autofill_type.h", | 62 "autofill_type.h", |
| 63 "autofill_wallet_data_type_controller.cc", |
| 64 "autofill_wallet_data_type_controller.h", |
| 63 "autofill_xml_parser.cc", | 65 "autofill_xml_parser.cc", |
| 64 "autofill_xml_parser.h", | 66 "autofill_xml_parser.h", |
| 65 "card_unmask_delegate.cc", | 67 "card_unmask_delegate.cc", |
| 66 "card_unmask_delegate.h", | 68 "card_unmask_delegate.h", |
| 67 "contact_info.cc", | 69 "contact_info.cc", |
| 68 "contact_info.h", | 70 "contact_info.h", |
| 69 "credit_card.cc", | 71 "credit_card.cc", |
| 70 "credit_card.h", | 72 "credit_card.h", |
| 71 "credit_card_field.cc", | 73 "credit_card_field.cc", |
| 72 "credit_card_field.h", | 74 "credit_card_field.h", |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "//sync:test_support_sync_api", | 289 "//sync:test_support_sync_api", |
| 288 "//testing/gmock", | 290 "//testing/gmock", |
| 289 "//testing/gtest", | 291 "//testing/gtest", |
| 290 "//third_party/libaddressinput:util", | 292 "//third_party/libaddressinput:util", |
| 291 "//third_party/libphonenumber", | 293 "//third_party/libphonenumber", |
| 292 "//third_party/libjingle", | 294 "//third_party/libjingle", |
| 293 "//ui/base", | 295 "//ui/base", |
| 294 "//url", | 296 "//url", |
| 295 ] | 297 ] |
| 296 } | 298 } |
| OLD | NEW |