Chromium Code Reviews| 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 # GYP version: components/autofill.gyp:autofill_core_browser | 7 # GYP version: components/autofill.gyp:autofill_core_browser |
| 8 static_library("browser") { | 8 static_library("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "address.cc", | 10 "address.cc", |
| 11 "address.h", | 11 "address.h", |
| 12 "address_field.cc", | 12 "address_field.cc", |
| 13 "address_field.h", | 13 "address_field.h", |
| 14 "address_i18n.cc", | 14 "address_i18n.cc", |
| 15 "address_i18n.h", | 15 "address_i18n.h", |
| 16 "address_rewriter.cc", | 16 "address_rewriter.cc", |
| 17 "address_rewriter.h", | 17 "address_rewriter.h", |
| 18 "address_rewriter_rules.cc", | 18 "address_rewriter_rules.cc", |
| 19 "assist_manager.cc", | |
| 20 "assist_manager.h", | |
| 19 "autocomplete_history_manager.cc", | 21 "autocomplete_history_manager.cc", |
| 20 "autocomplete_history_manager.h", | 22 "autocomplete_history_manager.h", |
| 21 "autofill-inl.h", | 23 "autofill-inl.h", |
| 22 "autofill_client.h", | 24 "autofill_client.h", |
| 23 "autofill_country.cc", | 25 "autofill_country.cc", |
| 24 "autofill_country.h", | 26 "autofill_country.h", |
| 25 "autofill_data_model.cc", | 27 "autofill_data_model.cc", |
| 26 "autofill_data_model.h", | 28 "autofill_data_model.h", |
| 27 "autofill_data_util.cc", | 29 "autofill_data_util.cc", |
| 28 "autofill_data_util.h", | 30 "autofill_data_util.h", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 147 | 149 |
| 148 if (is_ios) { | 150 if (is_ios) { |
| 149 sources += [ | 151 sources += [ |
| 150 "keyboard_accessory_metrics_logger.h", | 152 "keyboard_accessory_metrics_logger.h", |
| 151 "keyboard_accessory_metrics_logger.mm", | 153 "keyboard_accessory_metrics_logger.mm", |
| 152 ] | 154 ] |
| 153 } | 155 } |
| 154 | 156 |
| 155 if (is_ios || is_android) { | 157 if (is_ios || is_android) { |
| 156 sources += [ | 158 sources += [ |
| 159 "autofill_assist_infobar_delegate_mobile.cc", | |
| 160 "autofill_assist_infobar_delegate_mobile.h", | |
| 161 "autofill_assist_infobar_mobile.h", | |
|
please use gerrit instead
2016/07/29 16:33:20
Same comment about iOS.
Mathieu
2016/07/29 20:19:17
Done.
| |
| 157 "autofill_save_card_infobar_delegate_mobile.cc", | 162 "autofill_save_card_infobar_delegate_mobile.cc", |
| 158 "autofill_save_card_infobar_delegate_mobile.h", | 163 "autofill_save_card_infobar_delegate_mobile.h", |
| 159 "autofill_save_card_infobar_mobile.h", | 164 "autofill_save_card_infobar_mobile.h", |
| 160 ] | 165 ] |
| 161 } | 166 } |
| 162 | 167 |
| 163 configs += [ "//build/config:precompiled_headers" ] | 168 configs += [ "//build/config:precompiled_headers" ] |
| 164 | 169 |
| 165 deps = [ | 170 deps = [ |
| 166 "//base", | 171 "//base", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 275 ] | 280 ] |
| 276 } | 281 } |
| 277 | 282 |
| 278 source_set("unit_tests") { | 283 source_set("unit_tests") { |
| 279 testonly = true | 284 testonly = true |
| 280 sources = [ | 285 sources = [ |
| 281 "address_field_unittest.cc", | 286 "address_field_unittest.cc", |
| 282 "address_i18n_unittest.cc", | 287 "address_i18n_unittest.cc", |
| 283 "address_rewriter_unittest.cc", | 288 "address_rewriter_unittest.cc", |
| 284 "address_unittest.cc", | 289 "address_unittest.cc", |
| 290 "assist_manager_unittest.cc", | |
| 285 "autocomplete_history_manager_unittest.cc", | 291 "autocomplete_history_manager_unittest.cc", |
| 286 "autofill_country_unittest.cc", | 292 "autofill_country_unittest.cc", |
| 287 "autofill_data_model_unittest.cc", | 293 "autofill_data_model_unittest.cc", |
| 288 "autofill_data_util_unittest.cc", | 294 "autofill_data_util_unittest.cc", |
| 289 "autofill_download_manager_unittest.cc", | 295 "autofill_download_manager_unittest.cc", |
| 290 "autofill_external_delegate_unittest.cc", | 296 "autofill_external_delegate_unittest.cc", |
| 291 "autofill_field_unittest.cc", | 297 "autofill_field_unittest.cc", |
| 292 "autofill_ie_toolbar_import_win_unittest.cc", | 298 "autofill_ie_toolbar_import_win_unittest.cc", |
| 293 "autofill_manager_unittest.cc", | 299 "autofill_manager_unittest.cc", |
| 294 "autofill_merge_unittest.cc", | 300 "autofill_merge_unittest.cc", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 349 "//sync", | 355 "//sync", |
| 350 "//sync:test_support_sync_api", | 356 "//sync:test_support_sync_api", |
| 351 "//testing/gmock", | 357 "//testing/gmock", |
| 352 "//testing/gtest", | 358 "//testing/gtest", |
| 353 "//third_party/libaddressinput:util", | 359 "//third_party/libaddressinput:util", |
| 354 "//third_party/libphonenumber", | 360 "//third_party/libphonenumber", |
| 355 "//ui/base", | 361 "//ui/base", |
| 356 "//url", | 362 "//url", |
| 357 ] | 363 ] |
| 358 } | 364 } |
| OLD | NEW |