| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//ios/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "autofill_client_ios_bridge.h", | 9 "autofill_client_ios_bridge.h", |
| 10 "autofill_driver_ios.h", | 10 "autofill_driver_ios.h", |
| 11 "autofill_driver_ios.mm", | 11 "autofill_driver_ios.mm", |
| 12 "autofill_driver_ios_bridge.h", | 12 "autofill_driver_ios_bridge.h", |
| 13 "credit_card_util.h", | 13 "credit_card_util.h", |
| 14 "credit_card_util.mm", | 14 "credit_card_util.mm", |
| 15 "form_suggestion.h", | 15 "form_suggestion.h", |
| 16 "form_suggestion.mm", | 16 "form_suggestion.mm", |
| 17 "js_autofill_manager.h", | 17 "js_autofill_manager.h", |
| 18 "js_autofill_manager.mm", | 18 "js_autofill_manager.mm", |
| 19 "js_suggestion_manager.h", | 19 "js_suggestion_manager.h", |
| 20 "js_suggestion_manager.mm", | 20 "js_suggestion_manager.mm", |
| 21 "personal_data_manager_observer_bridge.h", | 21 "personal_data_manager_observer_bridge.h", |
| 22 "personal_data_manager_observer_bridge.mm", | 22 "personal_data_manager_observer_bridge.mm", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 ":injected_js", |
| 26 "//components/autofill/core/browser", | 27 "//components/autofill/core/browser", |
| 27 "//components/autofill/core/common", | 28 "//components/autofill/core/common", |
| 28 "//ios/public/provider/web", | 29 "//ios/public/provider/web", |
| 29 "//ios/web", | 30 "//ios/web", |
| 30 ":injected_js", | |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 | 33 |
| 34 js_compile_checked("injected_js") { | 34 js_compile_checked("injected_js") { |
| 35 visibility = [ ":browser" ] | 35 visibility = [ ":browser" ] |
| 36 sources = [ | 36 sources = [ |
| 37 "resources/autofill_controller.js", | 37 "resources/autofill_controller.js", |
| 38 "resources/suggestion_controller.js", | 38 "resources/suggestion_controller.js", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| OLD | NEW |