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

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

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 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 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 source_set("passwords_internal") { 144 source_set("passwords_internal") {
145 sources = [ 145 sources = [
146 "password_generation_prompt_view.h", 146 "password_generation_prompt_view.h",
147 "password_generation_prompt_view.mm", 147 "password_generation_prompt_view.mm",
148 "password_generation_prompt_view_controller.h", 148 "password_generation_prompt_view_controller.h",
149 "password_generation_prompt_view_controller.mm", 149 "password_generation_prompt_view_controller.mm",
150 "passwords_ui_delegate_impl.h", 150 "passwords_ui_delegate_impl.h",
151 "passwords_ui_delegate_impl.mm", 151 "passwords_ui_delegate_impl.mm",
152 ] 152 ]
153 deps = [ 153 deps = [
154 ":passwords",
154 "//base", 155 "//base",
155 "//components/strings", 156 "//components/strings",
156 "//ios/chrome/app/strings", 157 "//ios/chrome/app/strings",
157 "//ios/chrome/app/theme", 158 "//ios/chrome/app/theme",
158 "//ios/chrome/browser/passwords",
159 "//ios/chrome/browser/ui", 159 "//ios/chrome/browser/ui",
160 "//ios/chrome/common", 160 "//ios/chrome/common",
161 "//ios/third_party/material_components_ios", 161 "//ios/third_party/material_components_ios",
162 "//ios/third_party/material_roboto_font_loader_ios", 162 "//ios/third_party/material_roboto_font_loader_ios",
163 "//ui/base", 163 "//ui/base",
164 ] 164 ]
165 libs = [ "UIKit.framework" ] 165 libs = [ "UIKit.framework" ]
166 } 166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698