| 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 "ios_chrome_password_manager_client.h", | 9 "ios_chrome_password_manager_client.h", |
| 10 "ios_chrome_password_manager_client.mm", | 10 "ios_chrome_password_manager_client.mm", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "//components/password_manager/core/browser:test_support", | 111 "//components/password_manager/core/browser:test_support", |
| 112 "//components/password_manager/core/common", | 112 "//components/password_manager/core/common", |
| 113 "//components/prefs", | 113 "//components/prefs", |
| 114 "//components/prefs:test_support", | 114 "//components/prefs:test_support", |
| 115 "//google_apis", | 115 "//google_apis", |
| 116 "//ios/chrome/browser/autofill", | 116 "//ios/chrome/browser/autofill", |
| 117 "//ios/chrome/browser/browser_state:test_support", | 117 "//ios/chrome/browser/browser_state:test_support", |
| 118 "//ios/chrome/browser/ui/commands", | 118 "//ios/chrome/browser/ui/commands", |
| 119 "//ios/testing:ocmock_support", | 119 "//ios/testing:ocmock_support", |
| 120 "//ios/web", | 120 "//ios/web", |
| 121 "//ios/web:test_support", | 121 "//ios/web/public/test", |
| 122 "//ios/web/public/test/fakes", |
| 122 "//testing/gtest", | 123 "//testing/gtest", |
| 123 "//third_party/ocmock", | 124 "//third_party/ocmock", |
| 124 "//url", | 125 "//url", |
| 125 ] | 126 ] |
| 126 } | 127 } |
| 127 | 128 |
| 128 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have | 129 # TODO(crbug.com/487804): use js_compile_checked instead once the errors have |
| 129 # been fixed. | 130 # been fixed. |
| 130 js_compile_unchecked("injected_js") { | 131 js_compile_unchecked("injected_js") { |
| 131 visibility = [ ":passwords" ] | 132 visibility = [ ":passwords" ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 150 "//ios/chrome/app/strings", | 151 "//ios/chrome/app/strings", |
| 151 "//ios/chrome/app/theme", | 152 "//ios/chrome/app/theme", |
| 152 "//ios/chrome/browser/ui", | 153 "//ios/chrome/browser/ui", |
| 153 "//ios/chrome/common", | 154 "//ios/chrome/common", |
| 154 "//ios/third_party/material_components_ios", | 155 "//ios/third_party/material_components_ios", |
| 155 "//ios/third_party/material_roboto_font_loader_ios", | 156 "//ios/third_party/material_roboto_font_loader_ios", |
| 156 "//ui/base", | 157 "//ui/base", |
| 157 ] | 158 ] |
| 158 libs = [ "UIKit.framework" ] | 159 libs = [ "UIKit.framework" ] |
| 159 } | 160 } |
| OLD | NEW |