| 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 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "address.cc", | 10 "address.cc", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "webdata/autofill_webdata_backend.h", | 140 "webdata/autofill_webdata_backend.h", |
| 141 "webdata/autofill_webdata_backend_impl.cc", | 141 "webdata/autofill_webdata_backend_impl.cc", |
| 142 "webdata/autofill_webdata_backend_impl.h", | 142 "webdata/autofill_webdata_backend_impl.h", |
| 143 "webdata/autofill_webdata_service.cc", | 143 "webdata/autofill_webdata_service.cc", |
| 144 "webdata/autofill_webdata_service.h", | 144 "webdata/autofill_webdata_service.h", |
| 145 "webdata/autofill_webdata_service_observer.h", | 145 "webdata/autofill_webdata_service_observer.h", |
| 146 ] | 146 ] |
| 147 | 147 |
| 148 if (is_ios) { | 148 if (is_ios) { |
| 149 sources += [ | 149 sources += [ |
| 150 "autofill_field_trial_ios.cc", | |
| 151 "autofill_field_trial_ios.h", | |
| 152 "keyboard_accessory_metrics_logger.h", | 150 "keyboard_accessory_metrics_logger.h", |
| 153 "keyboard_accessory_metrics_logger.mm", | 151 "keyboard_accessory_metrics_logger.mm", |
| 154 ] | 152 ] |
| 155 } | 153 } |
| 156 | 154 |
| 157 if (is_ios || is_android) { | 155 if (is_ios || is_android) { |
| 158 sources += [ | 156 sources += [ |
| 159 "autofill_save_card_infobar_delegate_mobile.cc", | 157 "autofill_save_card_infobar_delegate_mobile.cc", |
| 160 "autofill_save_card_infobar_delegate_mobile.h", | 158 "autofill_save_card_infobar_delegate_mobile.h", |
| 161 "autofill_save_card_infobar_mobile.h", | 159 "autofill_save_card_infobar_mobile.h", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//sync", | 349 "//sync", |
| 352 "//sync:test_support_sync_api", | 350 "//sync:test_support_sync_api", |
| 353 "//testing/gmock", | 351 "//testing/gmock", |
| 354 "//testing/gtest", | 352 "//testing/gtest", |
| 355 "//third_party/libaddressinput:util", | 353 "//third_party/libaddressinput:util", |
| 356 "//third_party/libphonenumber", | 354 "//third_party/libphonenumber", |
| 357 "//ui/base", | 355 "//ui/base", |
| 358 "//url", | 356 "//url", |
| 359 ] | 357 ] |
| 360 } | 358 } |
| OLD | NEW |