| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 configs += [ "//build/config/compiler:enable_arc" ] | 90 configs += [ "//build/config/compiler:enable_arc" ] |
| 91 sources = [ | 91 sources = [ |
| 92 "credit_card_edit_view_controller.h", | 92 "credit_card_edit_view_controller.h", |
| 93 "credit_card_edit_view_controller.mm", | 93 "credit_card_edit_view_controller.mm", |
| 94 "payment_request_edit_view_controller+internal.h", | 94 "payment_request_edit_view_controller+internal.h", |
| 95 "payment_request_edit_view_controller.h", | 95 "payment_request_edit_view_controller.h", |
| 96 "payment_request_edit_view_controller.mm", | 96 "payment_request_edit_view_controller.mm", |
| 97 "payment_request_edit_view_controller_actions.h", | 97 "payment_request_edit_view_controller_actions.h", |
| 98 "payment_request_editor_field.h", | 98 "payment_request_editor_field.h", |
| 99 "payment_request_editor_field.mm", | 99 "payment_request_editor_field.mm", |
| 100 "payment_request_picker_row.h", |
| 101 "payment_request_picker_row.mm", |
| 102 "payment_request_picker_view_controller.h", |
| 103 "payment_request_picker_view_controller.mm", |
| 100 ] | 104 ] |
| 101 deps = [ | 105 deps = [ |
| 102 "//base", | 106 "//base", |
| 103 "//components/strings", | 107 "//components/strings", |
| 104 "//ios/chrome/app/theme", | 108 "//ios/chrome/app/theme", |
| 105 "//ios/chrome/browser/payments/cells", | 109 "//ios/chrome/browser/payments/cells", |
| 106 "//ios/chrome/browser/ui", | 110 "//ios/chrome/browser/ui", |
| 107 "//ios/chrome/browser/ui/autofill:autofill_ui", | 111 "//ios/chrome/browser/ui/autofill:autofill_ui", |
| 108 "//ios/chrome/browser/ui/autofill/cells", | 112 "//ios/chrome/browser/ui/autofill/cells", |
| 109 "//ios/chrome/browser/ui/collection_view", | 113 "//ios/chrome/browser/ui/collection_view", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 155 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 152 "//ios/chrome/test:test_support", | 156 "//ios/chrome/test:test_support", |
| 153 "//ios/testing:ocmock_support", | 157 "//ios/testing:ocmock_support", |
| 154 "//ios/third_party/material_components_ios", | 158 "//ios/third_party/material_components_ios", |
| 155 "//ios/web", | 159 "//ios/web", |
| 156 "//ios/web:test_support", | 160 "//ios/web:test_support", |
| 157 "//testing/gtest", | 161 "//testing/gtest", |
| 158 "//third_party/ocmock", | 162 "//third_party/ocmock", |
| 159 ] | 163 ] |
| 160 } | 164 } |
| OLD | NEW |