| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//url", | 75 "//url", |
| 76 ] | 76 ] |
| 77 public_deps = [ | 77 public_deps = [ |
| 78 ":passwords_generation_utils", | 78 ":passwords_generation_utils", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 allow_circular_includes_from = [ ":passwords_generation_utils" ] | 81 allow_circular_includes_from = [ ":passwords_generation_utils" ] |
| 82 } | 82 } |
| 83 | 83 |
| 84 source_set("passwords_generation_utils") { | 84 source_set("passwords_generation_utils") { |
| 85 configs += [ "//build/config/compiler:enable_arc" ] |
| 85 sources = [ | 86 sources = [ |
| 86 "password_generation_utils.h", | 87 "password_generation_utils.h", |
| 87 "password_generation_utils.mm", | 88 "password_generation_utils.mm", |
| 88 ] | 89 ] |
| 89 deps = [ | 90 deps = [ |
| 90 "//base:i18n", | 91 "//base:i18n", |
| 91 "//ios/chrome/browser/ui", | 92 "//ios/chrome/browser/ui", |
| 92 ] | 93 ] |
| 93 libs = [ "CoreGraphics.framework" ] | 94 libs = [ "CoreGraphics.framework" ] |
| 94 } | 95 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 130 |
| 130 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have | 131 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have |
| 131 # been fixed. | 132 # been fixed. |
| 132 js_compile_unchecked("injected_js") { | 133 js_compile_unchecked("injected_js") { |
| 133 visibility = [ ":passwords" ] | 134 visibility = [ ":passwords" ] |
| 134 sources = [ | 135 sources = [ |
| 135 "resources/credential_manager.js", | 136 "resources/credential_manager.js", |
| 136 "resources/password_controller.js", | 137 "resources/password_controller.js", |
| 137 ] | 138 ] |
| 138 } | 139 } |
| OLD | NEW |