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", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "keyboard_accessory_metrics_logger.h", | 150 "keyboard_accessory_metrics_logger.h", |
151 "keyboard_accessory_metrics_logger.mm", | 151 "keyboard_accessory_metrics_logger.mm", |
152 ] | 152 ] |
153 } | 153 } |
154 | 154 |
| 155 if (is_android) { |
| 156 sources += [ |
| 157 "autofill_assistant.cc", |
| 158 "autofill_assistant.h", |
| 159 "autofill_credit_card_filling_infobar_delegate_mobile.cc", |
| 160 "autofill_credit_card_filling_infobar_delegate_mobile.h", |
| 161 ] |
| 162 } |
| 163 |
155 if (is_ios || is_android) { | 164 if (is_ios || is_android) { |
156 sources += [ | 165 sources += [ |
157 "autofill_save_card_infobar_delegate_mobile.cc", | 166 "autofill_save_card_infobar_delegate_mobile.cc", |
158 "autofill_save_card_infobar_delegate_mobile.h", | 167 "autofill_save_card_infobar_delegate_mobile.h", |
159 "autofill_save_card_infobar_mobile.h", | 168 "autofill_save_card_infobar_mobile.h", |
160 ] | 169 ] |
161 } | 170 } |
162 | 171 |
163 configs += [ "//build/config:precompiled_headers" ] | 172 configs += [ "//build/config:precompiled_headers" ] |
164 | 173 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 "phone_number_unittest.cc", | 323 "phone_number_unittest.cc", |
315 "ui/card_unmask_prompt_controller_impl_unittest.cc", | 324 "ui/card_unmask_prompt_controller_impl_unittest.cc", |
316 "validation_unittest.cc", | 325 "validation_unittest.cc", |
317 "webdata/autofill_data_type_controller_unittest.cc", | 326 "webdata/autofill_data_type_controller_unittest.cc", |
318 "webdata/autofill_profile_syncable_service_unittest.cc", | 327 "webdata/autofill_profile_syncable_service_unittest.cc", |
319 "webdata/autofill_table_unittest.cc", | 328 "webdata/autofill_table_unittest.cc", |
320 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", | 329 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", |
321 "webdata/web_data_service_unittest.cc", | 330 "webdata/web_data_service_unittest.cc", |
322 ] | 331 ] |
323 | 332 |
| 333 if (is_android) { |
| 334 sources += [ "autofill_assistant_unittest.cc" ] |
| 335 } |
| 336 |
324 deps = [ | 337 deps = [ |
325 ":browser", | 338 ":browser", |
326 ":test_support", | 339 ":test_support", |
327 ":unit_tests_bundle_data", | 340 ":unit_tests_bundle_data", |
328 "//base", | 341 "//base", |
329 "//base/test:test_support", | 342 "//base/test:test_support", |
330 "//components/autofill/core/common", | 343 "//components/autofill/core/common", |
331 "//components/os_crypt", | 344 "//components/os_crypt", |
332 "//components/os_crypt:test_support", | 345 "//components/os_crypt:test_support", |
333 "//components/prefs:test_support", | 346 "//components/prefs:test_support", |
(...skipping 15 matching lines...) Expand all Loading... |
349 "//net:test_support", | 362 "//net:test_support", |
350 "//sql", | 363 "//sql", |
351 "//testing/gmock", | 364 "//testing/gmock", |
352 "//testing/gtest", | 365 "//testing/gtest", |
353 "//third_party/libaddressinput:util", | 366 "//third_party/libaddressinput:util", |
354 "//third_party/libphonenumber", | 367 "//third_party/libphonenumber", |
355 "//ui/base", | 368 "//ui/base", |
356 "//url", | 369 "//url", |
357 ] | 370 ] |
358 } | 371 } |
OLD | NEW |