| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/public/provider/chrome/browser", | 72 "//ios/public/provider/chrome/browser", |
| 73 "//ios/public/provider/chrome/browser/ui", |
| 73 "//ios/web", | 74 "//ios/web", |
| 74 "//ui/base", | 75 "//ui/base", |
| 75 "//url", | 76 "//url", |
| 76 ] | 77 ] |
| 77 public_deps = [ | 78 public_deps = [ |
| 78 ":passwords_generation_utils", | 79 ":passwords_generation_utils", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 allow_circular_includes_from = [ ":passwords_generation_utils" ] | 82 allow_circular_includes_from = [ ":passwords_generation_utils" ] |
| 82 } | 83 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 131 |
| 131 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have | 132 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have |
| 132 # been fixed. | 133 # been fixed. |
| 133 js_compile_unchecked("injected_js") { | 134 js_compile_unchecked("injected_js") { |
| 134 visibility = [ ":passwords" ] | 135 visibility = [ ":passwords" ] |
| 135 sources = [ | 136 sources = [ |
| 136 "resources/credential_manager.js", | 137 "resources/credential_manager.js", |
| 137 "resources/password_controller.js", | 138 "resources/password_controller.js", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |