| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "form_field.cc", | 86 "form_field.cc", |
| 87 "form_field.h", | 87 "form_field.h", |
| 88 "form_group.cc", | 88 "form_group.cc", |
| 89 "form_group.h", | 89 "form_group.h", |
| 90 "form_structure.cc", | 90 "form_structure.cc", |
| 91 "form_structure.h", | 91 "form_structure.h", |
| 92 "legal_message_line.cc", | 92 "legal_message_line.cc", |
| 93 "legal_message_line.h", | 93 "legal_message_line.h", |
| 94 "name_field.cc", | 94 "name_field.cc", |
| 95 "name_field.h", | 95 "name_field.h", |
| 96 "options_util.cc", | |
| 97 "options_util.h", | |
| 98 "password_generator.cc", | 96 "password_generator.cc", |
| 99 "password_generator.h", | 97 "password_generator.h", |
| 100 "payments/payments_client.cc", | 98 "payments/payments_client.cc", |
| 101 "payments/payments_client.h", | 99 "payments/payments_client.h", |
| 102 "payments/payments_request.h", | 100 "payments/payments_request.h", |
| 103 "personal_data_manager.cc", | 101 "personal_data_manager.cc", |
| 104 "personal_data_manager.h", | 102 "personal_data_manager.h", |
| 105 "personal_data_manager_observer.h", | 103 "personal_data_manager_observer.h", |
| 106 "phone_field.cc", | 104 "phone_field.cc", |
| 107 "phone_field.h", | 105 "phone_field.h", |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "autofill_type_unittest.cc", | 275 "autofill_type_unittest.cc", |
| 278 "contact_info_unittest.cc", | 276 "contact_info_unittest.cc", |
| 279 "country_names_unittest.cc", | 277 "country_names_unittest.cc", |
| 280 "credit_card_field_unittest.cc", | 278 "credit_card_field_unittest.cc", |
| 281 "credit_card_unittest.cc", | 279 "credit_card_unittest.cc", |
| 282 "field_candidates_unittest.cc", | 280 "field_candidates_unittest.cc", |
| 283 "form_field_unittest.cc", | 281 "form_field_unittest.cc", |
| 284 "form_structure_unittest.cc", | 282 "form_structure_unittest.cc", |
| 285 "legal_message_line_unittest.cc", | 283 "legal_message_line_unittest.cc", |
| 286 "name_field_unittest.cc", | 284 "name_field_unittest.cc", |
| 287 "options_util_unittest.cc", | |
| 288 "password_generator_unittest.cc", | 285 "password_generator_unittest.cc", |
| 289 "personal_data_manager_unittest.cc", | 286 "personal_data_manager_unittest.cc", |
| 290 "phone_field_unittest.cc", | 287 "phone_field_unittest.cc", |
| 291 "phone_number_i18n_unittest.cc", | 288 "phone_number_i18n_unittest.cc", |
| 292 "phone_number_unittest.cc", | 289 "phone_number_unittest.cc", |
| 293 "ui/card_unmask_prompt_controller_impl_unittest.cc", | 290 "ui/card_unmask_prompt_controller_impl_unittest.cc", |
| 294 "validation_unittest.cc", | 291 "validation_unittest.cc", |
| 295 "webdata/autofill_data_type_controller_unittest.cc", | 292 "webdata/autofill_data_type_controller_unittest.cc", |
| 296 "webdata/autofill_profile_syncable_service_unittest.cc", | 293 "webdata/autofill_profile_syncable_service_unittest.cc", |
| 297 "webdata/autofill_table_unittest.cc", | 294 "webdata/autofill_table_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 325 "//sync", | 322 "//sync", |
| 326 "//sync:test_support_sync_api", | 323 "//sync:test_support_sync_api", |
| 327 "//testing/gmock", | 324 "//testing/gmock", |
| 328 "//testing/gtest", | 325 "//testing/gtest", |
| 329 "//third_party/libaddressinput:util", | 326 "//third_party/libaddressinput:util", |
| 330 "//third_party/libphonenumber", | 327 "//third_party/libphonenumber", |
| 331 "//ui/base", | 328 "//ui/base", |
| 332 "//url", | 329 "//url", |
| 333 ] | 330 ] |
| 334 } | 331 } |
| OLD | NEW |