| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//ios/chrome/app/theme", | 62 "//ios/chrome/app/theme", |
| 63 "//ios/chrome/browser", | 63 "//ios/chrome/browser", |
| 64 "//ios/chrome/browser/autofill", | 64 "//ios/chrome/browser/autofill", |
| 65 "//ios/chrome/browser/browser_state", | 65 "//ios/chrome/browser/browser_state", |
| 66 "//ios/chrome/browser/infobars", | 66 "//ios/chrome/browser/infobars", |
| 67 "//ios/chrome/browser/signin", | 67 "//ios/chrome/browser/signin", |
| 68 "//ios/chrome/browser/sync/glue", | 68 "//ios/chrome/browser/sync/glue", |
| 69 "//ios/chrome/browser/ui", | 69 "//ios/chrome/browser/ui", |
| 70 "//ios/chrome/browser/ui/commands", | 70 "//ios/chrome/browser/ui/commands", |
| 71 "//ios/chrome/browser/ui/elements", | 71 "//ios/chrome/browser/ui/elements", |
| 72 "//ios/chrome/browser/ui/infobars", |
| 72 "//ios/public/provider/chrome/browser", | 73 "//ios/public/provider/chrome/browser", |
| 73 "//ios/public/provider/chrome/browser/ui", | 74 "//ios/public/provider/chrome/browser/ui", |
| 74 "//ios/web", | 75 "//ios/web", |
| 75 "//ui/base", | 76 "//ui/base", |
| 76 "//url", | 77 "//url", |
| 77 ] | 78 ] |
| 78 public_deps = [ | 79 public_deps = [ |
| 79 ":passwords_generation_utils", | 80 ":passwords_generation_utils", |
| 80 ] | 81 ] |
| 81 | 82 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "//ios/chrome/app/theme", | 157 "//ios/chrome/app/theme", |
| 157 "//ios/chrome/browser/passwords", | 158 "//ios/chrome/browser/passwords", |
| 158 "//ios/chrome/browser/ui", | 159 "//ios/chrome/browser/ui", |
| 159 "//ios/chrome/common", | 160 "//ios/chrome/common", |
| 160 "//ios/third_party/material_components_ios", | 161 "//ios/third_party/material_components_ios", |
| 161 "//ios/third_party/material_roboto_font_loader_ios", | 162 "//ios/third_party/material_roboto_font_loader_ios", |
| 162 "//ui/base", | 163 "//ui/base", |
| 163 ] | 164 ] |
| 164 libs = [ "UIKit.framework" ] | 165 libs = [ "UIKit.framework" ] |
| 165 } | 166 } |
| OLD | NEW |