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 import("//ios/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
6 | 6 |
7 source_set("passwords") { | 7 source_set("passwords") { |
8 sources = [ | 8 sources = [ |
9 "credential_manager.h", | 9 "credential_manager.h", |
10 "credential_manager.mm", | 10 "credential_manager.mm", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 132 |
133 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have | 133 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have |
134 # been fixed. | 134 # been fixed. |
135 js_compile_unchecked("injected_js") { | 135 js_compile_unchecked("injected_js") { |
136 visibility = [ ":passwords" ] | 136 visibility = [ ":passwords" ] |
137 sources = [ | 137 sources = [ |
138 "resources/credential_manager.js", | 138 "resources/credential_manager.js", |
139 "resources/password_controller.js", | 139 "resources/password_controller.js", |
140 ] | 140 ] |
141 } | 141 } |
142 | |
143 source_set("passwords_internal") { | |
144 sources = [ | |
145 "password_generation_prompt_view.h", | |
146 "password_generation_prompt_view.mm", | |
147 "password_generation_prompt_view_controller.h", | |
148 "password_generation_prompt_view_controller.mm", | |
149 "passwords_ui_delegate_impl.h", | |
150 "passwords_ui_delegate_impl.mm", | |
151 ] | |
152 deps = [ | |
153 "//base", | |
154 "//components/strings", | |
155 "//ios/chrome/app/strings", | |
156 "//ios/chrome/app/theme", | |
157 "//ios/chrome/browser/passwords", | |
158 "//ios/chrome/browser/ui", | |
159 "//ios/chrome/common", | |
160 "//ios/third_party/material_components_ios", | |
161 "//ios/third_party/material_roboto_font_loader_ios", | |
162 "//ui/base", | |
163 ] | |
164 libs = [ "UIKit.framework" ] | |
165 } | |
OLD | NEW |