Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(642)

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 2212063002: [Autofill] Implement Autofill Assistant infobar for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: card details Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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) { 155 if (is_ios || is_android) {
156 sources += [ 156 sources += [
157 "autofill_assistant.cc", 157 "autofill_assistant.cc",
158 "autofill_assistant.h", 158 "autofill_assistant.h",
159 "autofill_credit_card_filling_infobar_delegate_mobile.cc", 159 "autofill_credit_card_filling_infobar_delegate_mobile.cc",
160 "autofill_credit_card_filling_infobar_delegate_mobile.h", 160 "autofill_credit_card_filling_infobar_delegate_mobile.h",
161 ]
162 }
163
164 if (is_ios || is_android) {
165 sources += [
166 "autofill_save_card_infobar_delegate_mobile.cc", 161 "autofill_save_card_infobar_delegate_mobile.cc",
167 "autofill_save_card_infobar_delegate_mobile.h", 162 "autofill_save_card_infobar_delegate_mobile.h",
168 "autofill_save_card_infobar_mobile.h", 163 "autofill_save_card_infobar_mobile.h",
169 ] 164 ]
170 } 165 }
171 166
172 configs += [ "//build/config:precompiled_headers" ] 167 configs += [ "//build/config:precompiled_headers" ]
173 168
174 deps = [ 169 deps = [
175 "//base", 170 "//base",
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 "phone_number_unittest.cc", 318 "phone_number_unittest.cc",
324 "ui/card_unmask_prompt_controller_impl_unittest.cc", 319 "ui/card_unmask_prompt_controller_impl_unittest.cc",
325 "validation_unittest.cc", 320 "validation_unittest.cc",
326 "webdata/autofill_data_type_controller_unittest.cc", 321 "webdata/autofill_data_type_controller_unittest.cc",
327 "webdata/autofill_profile_syncable_service_unittest.cc", 322 "webdata/autofill_profile_syncable_service_unittest.cc",
328 "webdata/autofill_table_unittest.cc", 323 "webdata/autofill_table_unittest.cc",
329 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", 324 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc",
330 "webdata/web_data_service_unittest.cc", 325 "webdata/web_data_service_unittest.cc",
331 ] 326 ]
332 327
333 if (is_android) { 328 if (is_ios || is_android) {
334 sources += [ "autofill_assistant_unittest.cc" ] 329 sources += [ "autofill_assistant_unittest.cc" ]
335 } 330 }
336 331
337 deps = [ 332 deps = [
338 ":browser", 333 ":browser",
339 ":test_support", 334 ":test_support",
340 ":unit_tests_bundle_data", 335 ":unit_tests_bundle_data",
341 "//base", 336 "//base",
342 "//base/test:test_support", 337 "//base/test:test_support",
343 "//components/autofill/core/common", 338 "//components/autofill/core/common",
(...skipping 18 matching lines...) Expand all
362 "//net:test_support", 357 "//net:test_support",
363 "//sql", 358 "//sql",
364 "//testing/gmock", 359 "//testing/gmock",
365 "//testing/gtest", 360 "//testing/gtest",
366 "//third_party/libaddressinput:util", 361 "//third_party/libaddressinput:util",
367 "//third_party/libphonenumber", 362 "//third_party/libphonenumber",
368 "//ui/base", 363 "//ui/base",
369 "//url", 364 "//url",
370 ] 365 ]
371 } 366 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698