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 js_compile_checked("injected_js") { | 7 js_compile_checked("injected_js") { |
8 sources = [ | 8 sources = [ |
9 "resources/payment_request_manager.js", | 9 "resources/payment_request_manager.js", |
10 ] | 10 ] |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "//ios/chrome/browser/browser_state", | 72 "//ios/chrome/browser/browser_state", |
73 "//ios/chrome/browser/payments/cells", | 73 "//ios/chrome/browser/payments/cells", |
74 "//ios/chrome/browser/signin", | 74 "//ios/chrome/browser/signin", |
75 "//ios/chrome/browser/ui", | 75 "//ios/chrome/browser/ui", |
76 "//ios/chrome/browser/ui/autofill", | 76 "//ios/chrome/browser/ui/autofill", |
77 "//ios/chrome/browser/ui/autofill:autofill_ui", | 77 "//ios/chrome/browser/ui/autofill:autofill_ui", |
78 "//ios/chrome/browser/ui/autofill/cells", | 78 "//ios/chrome/browser/ui/autofill/cells", |
79 "//ios/chrome/browser/ui/collection_view", | 79 "//ios/chrome/browser/ui/collection_view", |
80 "//ios/chrome/browser/ui/collection_view/cells", | 80 "//ios/chrome/browser/ui/collection_view/cells", |
81 "//ios/chrome/browser/ui/colors", | 81 "//ios/chrome/browser/ui/colors", |
| 82 "//ios/chrome/browser/ui/commands", |
82 "//ios/chrome/browser/ui/icons", | 83 "//ios/chrome/browser/ui/icons", |
83 "//ios/third_party/material_components_ios", | 84 "//ios/third_party/material_components_ios", |
84 "//ios/third_party/material_roboto_font_loader_ios", | 85 "//ios/third_party/material_roboto_font_loader_ios", |
85 "//ios/web", | 86 "//ios/web", |
86 "//ui/base", | 87 "//ui/base", |
87 ] | 88 ] |
88 libs = [ "UIKit.framework" ] | 89 libs = [ "UIKit.framework" ] |
89 } | 90 } |
90 | 91 |
91 source_set("payments_ui") { | 92 source_set("payments_ui") { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 "//ios/chrome/test:test_support", | 164 "//ios/chrome/test:test_support", |
164 "//ios/testing:ocmock_support", | 165 "//ios/testing:ocmock_support", |
165 "//ios/third_party/material_components_ios", | 166 "//ios/third_party/material_components_ios", |
166 "//ios/web", | 167 "//ios/web", |
167 "//ios/web:test_support", | 168 "//ios/web:test_support", |
168 "//testing/gmock", | 169 "//testing/gmock", |
169 "//testing/gtest", | 170 "//testing/gtest", |
170 "//third_party/ocmock", | 171 "//third_party/ocmock", |
171 ] | 172 ] |
172 } | 173 } |
OLD | NEW |