| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 | 256 |
| 255 source_set("unit_tests") { | 257 source_set("unit_tests") { |
| 256 testonly = true | 258 testonly = true |
| 257 sources = [ | 259 sources = [ |
| 258 "address_field_unittest.cc", | 260 "address_field_unittest.cc", |
| 259 "address_i18n_unittest.cc", | 261 "address_i18n_unittest.cc", |
| 260 "address_unittest.cc", | 262 "address_unittest.cc", |
| 261 "autocomplete_history_manager_unittest.cc", | 263 "autocomplete_history_manager_unittest.cc", |
| 262 "autofill_country_unittest.cc", | 264 "autofill_country_unittest.cc", |
| 263 "autofill_data_model_unittest.cc", | 265 "autofill_data_model_unittest.cc", |
| 266 "autofill_data_util_unittest.cc", |
| 264 "autofill_download_manager_unittest.cc", | 267 "autofill_download_manager_unittest.cc", |
| 265 "autofill_external_delegate_unittest.cc", | 268 "autofill_external_delegate_unittest.cc", |
| 266 "autofill_field_unittest.cc", | 269 "autofill_field_unittest.cc", |
| 267 "autofill_ie_toolbar_import_win_unittest.cc", | 270 "autofill_ie_toolbar_import_win_unittest.cc", |
| 268 "autofill_manager_unittest.cc", | 271 "autofill_manager_unittest.cc", |
| 269 "autofill_merge_unittest.cc", | 272 "autofill_merge_unittest.cc", |
| 270 "autofill_metrics_unittest.cc", | 273 "autofill_metrics_unittest.cc", |
| 271 "autofill_profile_unittest.cc", | 274 "autofill_profile_unittest.cc", |
| 272 "autofill_type_unittest.cc", | 275 "autofill_type_unittest.cc", |
| 273 "contact_info_unittest.cc", | 276 "contact_info_unittest.cc", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "//sync", | 322 "//sync", |
| 320 "//sync:test_support_sync_api", | 323 "//sync:test_support_sync_api", |
| 321 "//testing/gmock", | 324 "//testing/gmock", |
| 322 "//testing/gtest", | 325 "//testing/gtest", |
| 323 "//third_party/libaddressinput:util", | 326 "//third_party/libaddressinput:util", |
| 324 "//third_party/libphonenumber", | 327 "//third_party/libphonenumber", |
| 325 "//ui/base", | 328 "//ui/base", |
| 326 "//url", | 329 "//url", |
| 327 ] | 330 ] |
| 328 } | 331 } |
| OLD | NEW |