| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "shipping_option_selection_coordinator.mm", | 50 "shipping_option_selection_coordinator.mm", |
| 51 "shipping_option_selection_view_controller.h", | 51 "shipping_option_selection_view_controller.h", |
| 52 "shipping_option_selection_view_controller.mm", | 52 "shipping_option_selection_view_controller.mm", |
| 53 "shipping_option_selection_view_controller_actions.h", | 53 "shipping_option_selection_view_controller_actions.h", |
| 54 ] | 54 ] |
| 55 deps = [ | 55 deps = [ |
| 56 ":injected_js", | 56 ":injected_js", |
| 57 "//base", | 57 "//base", |
| 58 "//components/autofill/core/browser", | 58 "//components/autofill/core/browser", |
| 59 "//components/autofill/ios/browser", | 59 "//components/autofill/ios/browser", |
| 60 "//components/payments:payment_validation", | 60 "//components/payments/core", |
| 61 "//components/strings", | 61 "//components/strings", |
| 62 "//ios/chrome/app/strings", | 62 "//ios/chrome/app/strings", |
| 63 "//ios/chrome/app/theme", | 63 "//ios/chrome/app/theme", |
| 64 "//ios/chrome/browser", | 64 "//ios/chrome/browser", |
| 65 "//ios/chrome/browser/autofill", | 65 "//ios/chrome/browser/autofill", |
| 66 "//ios/chrome/browser/browser_state", | 66 "//ios/chrome/browser/browser_state", |
| 67 "//ios/chrome/browser/payments/cells", | 67 "//ios/chrome/browser/payments/cells", |
| 68 "//ios/chrome/browser/ui", | 68 "//ios/chrome/browser/ui", |
| 69 "//ios/chrome/browser/ui/autofill", | 69 "//ios/chrome/browser/ui/autofill", |
| 70 "//ios/chrome/browser/ui/autofill/cells", | 70 "//ios/chrome/browser/ui/autofill/cells", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 99 "shipping_address_selection_view_controller_unittest.mm", | 99 "shipping_address_selection_view_controller_unittest.mm", |
| 100 "shipping_option_selection_coordinator_unittest.mm", | 100 "shipping_option_selection_coordinator_unittest.mm", |
| 101 "shipping_option_selection_view_controller_unittest.mm", | 101 "shipping_option_selection_view_controller_unittest.mm", |
| 102 ] | 102 ] |
| 103 deps = [ | 103 deps = [ |
| 104 ":payments", | 104 ":payments", |
| 105 "//base", | 105 "//base", |
| 106 "//base/test:test_support", | 106 "//base/test:test_support", |
| 107 "//components/autofill/core/browser", | 107 "//components/autofill/core/browser", |
| 108 "//components/autofill/core/browser:test_support", | 108 "//components/autofill/core/browser:test_support", |
| 109 "//components/payments:payment_validation", | 109 "//components/payments/core", |
| 110 "//components/strings", | 110 "//components/strings", |
| 111 "//ios/chrome/app/strings", | 111 "//ios/chrome/app/strings", |
| 112 "//ios/chrome/browser", | 112 "//ios/chrome/browser", |
| 113 "//ios/chrome/browser/payments/cells", | 113 "//ios/chrome/browser/payments/cells", |
| 114 "//ios/chrome/browser/ui/autofill/cells", | 114 "//ios/chrome/browser/ui/autofill/cells", |
| 115 "//ios/chrome/browser/ui/collection_view:test_support", | 115 "//ios/chrome/browser/ui/collection_view:test_support", |
| 116 "//ios/chrome/browser/ui/collection_view/cells", | 116 "//ios/chrome/browser/ui/collection_view/cells", |
| 117 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 117 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 118 "//ios/chrome/test:test_support", | 118 "//ios/chrome/test:test_support", |
| 119 "//ios/testing:ocmock_support", | 119 "//ios/testing:ocmock_support", |
| 120 "//ios/third_party/material_components_ios", | 120 "//ios/third_party/material_components_ios", |
| 121 "//ios/web", | 121 "//ios/web", |
| 122 "//ios/web:test_support", | 122 "//ios/web:test_support", |
| 123 "//testing/gtest", | 123 "//testing/gtest", |
| 124 "//third_party/ocmock", | 124 "//third_party/ocmock", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |