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

Side by Side Diff: ios/chrome/browser/passwords/BUILD.gn

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 3 years, 12 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
« no previous file with comments | « ios/chrome/browser/net/BUILD.gn ('k') | ios/chrome/browser/payments/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/net/BUILD.gn ('k') | ios/chrome/browser/payments/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698