| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("autofill") { | 5 source_set("autofill") { |
| 6 sources = [ | 6 sources = [ |
| 7 "form_input_accessory_view.h", | 7 "form_input_accessory_view.h", |
| 8 "form_input_accessory_view.mm", | 8 "form_input_accessory_view.mm", |
| 9 "form_input_accessory_view_controller.h", | 9 "form_input_accessory_view_controller.h", |
| 10 "form_input_accessory_view_controller.mm", | 10 "form_input_accessory_view_controller.mm", |
| 11 "form_input_accessory_view_delegate.h", | 11 "form_input_accessory_view_delegate.h", |
| 12 "form_suggestion_controller.h", | 12 "form_suggestion_controller.h", |
| 13 "form_suggestion_controller.mm", | 13 "form_suggestion_controller.mm", |
| 14 "form_suggestion_label.h", | 14 "form_suggestion_label.h", |
| 15 "form_suggestion_label.mm", | 15 "form_suggestion_label.mm", |
| 16 "form_suggestion_provider.h", | 16 "form_suggestion_provider.h", |
| 17 "form_suggestion_view.h", | 17 "form_suggestion_view.h", |
| 18 "form_suggestion_view.mm", | 18 "form_suggestion_view.mm", |
| 19 "form_suggestion_view_client.h", | 19 "form_suggestion_view_client.h", |
| 20 "personal_data_manager_factory.cc", | 20 "personal_data_manager_factory.cc", |
| 21 "personal_data_manager_factory.h", | 21 "personal_data_manager_factory.h", |
| 22 "validation_rules_storage_factory.cc", |
| 23 "validation_rules_storage_factory.h", |
| 22 ] | 24 ] |
| 23 deps = [ | 25 deps = [ |
| 24 "//base", | 26 "//base", |
| 25 "//base:i18n", | 27 "//base:i18n", |
| 26 "//components/autofill/core/browser", | 28 "//components/autofill/core/browser", |
| 27 "//components/autofill/ios/browser", | 29 "//components/autofill/ios/browser", |
| 28 "//components/keyed_service/core", | 30 "//components/keyed_service/core", |
| 29 "//components/keyed_service/ios", | 31 "//components/keyed_service/ios", |
| 32 "//components/prefs", |
| 30 "//components/signin/core/browser", | 33 "//components/signin/core/browser", |
| 31 "//ios/chrome/app/strings", | 34 "//ios/chrome/app/strings", |
| 32 "//ios/chrome/browser", | 35 "//ios/chrome/browser", |
| 33 "//ios/chrome/browser/browser_state", | 36 "//ios/chrome/browser/browser_state", |
| 34 "//ios/chrome/browser/passwords:passwords_generation_utils", | 37 "//ios/chrome/browser/passwords:passwords_generation_utils", |
| 35 "//ios/chrome/browser/signin", | 38 "//ios/chrome/browser/signin", |
| 36 "//ios/chrome/browser/ui", | 39 "//ios/chrome/browser/ui", |
| 37 "//ios/web", | 40 "//ios/web", |
| 41 "//third_party/libaddressinput", |
| 38 "//ui/base", | 42 "//ui/base", |
| 39 "//url", | 43 "//url", |
| 40 ] | 44 ] |
| 41 libs = [ "QuartzCore.framework" ] | 45 libs = [ "QuartzCore.framework" ] |
| 42 } | 46 } |
| 43 | 47 |
| 44 source_set("autofill_internal") { | 48 source_set("autofill_internal") { |
| 45 configs += [ "//build/config/compiler:enable_arc" ] | 49 configs += [ "//build/config/compiler:enable_arc" ] |
| 46 sources = [ | 50 sources = [ |
| 47 "autofill_agent.h", | 51 "autofill_agent.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "//ios/chrome/browser/ui", | 126 "//ios/chrome/browser/ui", |
| 123 "//ios/chrome/test/app:test_support", | 127 "//ios/chrome/test/app:test_support", |
| 124 "//ios/chrome/test/earl_grey:test_support", | 128 "//ios/chrome/test/earl_grey:test_support", |
| 125 "//ios/testing:ios_test_support", | 129 "//ios/testing:ios_test_support", |
| 126 "//ios/testing/earl_grey:earl_grey_support", | 130 "//ios/testing/earl_grey:earl_grey_support", |
| 127 "//ios/third_party/earl_grey", | 131 "//ios/third_party/earl_grey", |
| 128 "//ios/web:earl_grey_test_support", | 132 "//ios/web:earl_grey_test_support", |
| 129 "//ios/web:test_support", | 133 "//ios/web:test_support", |
| 130 ] | 134 ] |
| 131 } | 135 } |
| OLD | NEW |