| 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 14 matching lines...) Expand all Loading... |
| 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", | 28 "autofill_cc_infobar_delegate.cc", |
| 29 "autofill_cc_infobar_delegate.h", | 29 "autofill_cc_infobar_delegate.h", |
| 30 "autofill_client.h", | 30 "autofill_client.h", |
| 31 "autofill_country.cc", | 31 "autofill_country.cc", |
| 32 "autofill_country.h", | 32 "autofill_country.h", |
| 33 "autofill_data_model.cc", | 33 "autofill_data_model.cc", |
| 34 "autofill_data_model.h", | 34 "autofill_data_model.h", |
| 35 "autofill_data_util.cc", |
| 36 "autofill_data_util.h", |
| 35 "autofill_download_manager.cc", | 37 "autofill_download_manager.cc", |
| 36 "autofill_download_manager.h", | 38 "autofill_download_manager.h", |
| 37 "autofill_driver.h", | 39 "autofill_driver.h", |
| 38 "autofill_experiments.cc", | 40 "autofill_experiments.cc", |
| 39 "autofill_experiments.h", | 41 "autofill_experiments.h", |
| 40 "autofill_external_delegate.cc", | 42 "autofill_external_delegate.cc", |
| 41 "autofill_external_delegate.h", | 43 "autofill_external_delegate.h", |
| 42 "autofill_field.cc", | 44 "autofill_field.cc", |
| 43 "autofill_field.h", | 45 "autofill_field.h", |
| 44 "autofill_ie_toolbar_import_win.cc", | 46 "autofill_ie_toolbar_import_win.cc", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 258 |
| 257 source_set("unit_tests") { | 259 source_set("unit_tests") { |
| 258 testonly = true | 260 testonly = true |
| 259 sources = [ | 261 sources = [ |
| 260 "address_field_unittest.cc", | 262 "address_field_unittest.cc", |
| 261 "address_i18n_unittest.cc", | 263 "address_i18n_unittest.cc", |
| 262 "address_unittest.cc", | 264 "address_unittest.cc", |
| 263 "autocomplete_history_manager_unittest.cc", | 265 "autocomplete_history_manager_unittest.cc", |
| 264 "autofill_country_unittest.cc", | 266 "autofill_country_unittest.cc", |
| 265 "autofill_data_model_unittest.cc", | 267 "autofill_data_model_unittest.cc", |
| 268 "autofill_data_util_unittest.cc", |
| 266 "autofill_download_manager_unittest.cc", | 269 "autofill_download_manager_unittest.cc", |
| 267 "autofill_external_delegate_unittest.cc", | 270 "autofill_external_delegate_unittest.cc", |
| 268 "autofill_field_unittest.cc", | 271 "autofill_field_unittest.cc", |
| 269 "autofill_ie_toolbar_import_win_unittest.cc", | 272 "autofill_ie_toolbar_import_win_unittest.cc", |
| 270 "autofill_manager_unittest.cc", | 273 "autofill_manager_unittest.cc", |
| 271 "autofill_merge_unittest.cc", | 274 "autofill_merge_unittest.cc", |
| 272 "autofill_metrics_unittest.cc", | 275 "autofill_metrics_unittest.cc", |
| 273 "autofill_profile_unittest.cc", | 276 "autofill_profile_unittest.cc", |
| 274 "autofill_type_unittest.cc", | 277 "autofill_type_unittest.cc", |
| 275 "contact_info_unittest.cc", | 278 "contact_info_unittest.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 "//sync", | 325 "//sync", |
| 323 "//sync:test_support_sync_api", | 326 "//sync:test_support_sync_api", |
| 324 "//testing/gmock", | 327 "//testing/gmock", |
| 325 "//testing/gtest", | 328 "//testing/gtest", |
| 326 "//third_party/libaddressinput:util", | 329 "//third_party/libaddressinput:util", |
| 327 "//third_party/libphonenumber", | 330 "//third_party/libphonenumber", |
| 328 "//ui/base", | 331 "//ui/base", |
| 329 "//url", | 332 "//url", |
| 330 ] | 333 ] |
| 331 } | 334 } |
| OLD | NEW |