| 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/core", | |
| 61 "//components/strings", | 60 "//components/strings", |
| 62 "//ios/chrome/app/strings", | 61 "//ios/chrome/app/strings", |
| 63 "//ios/chrome/app/theme", | 62 "//ios/chrome/app/theme", |
| 64 "//ios/chrome/browser", | 63 "//ios/chrome/browser", |
| 65 "//ios/chrome/browser/autofill", | 64 "//ios/chrome/browser/autofill", |
| 66 "//ios/chrome/browser/browser_state", | 65 "//ios/chrome/browser/browser_state", |
| 67 "//ios/chrome/browser/payments/cells", | 66 "//ios/chrome/browser/payments/cells", |
| 68 "//ios/chrome/browser/ui", | 67 "//ios/chrome/browser/ui", |
| 69 "//ios/chrome/browser/ui/autofill", | 68 "//ios/chrome/browser/ui/autofill", |
| 70 "//ios/chrome/browser/ui/autofill/cells", | 69 "//ios/chrome/browser/ui/autofill/cells", |
| 71 "//ios/chrome/browser/ui/collection_view", | 70 "//ios/chrome/browser/ui/collection_view", |
| 72 "//ios/chrome/browser/ui/collection_view/cells", | 71 "//ios/chrome/browser/ui/collection_view/cells", |
| 73 "//ios/chrome/browser/ui/colors", | 72 "//ios/chrome/browser/ui/colors", |
| 74 "//ios/chrome/browser/ui/icons", | 73 "//ios/chrome/browser/ui/icons", |
| 75 "//ios/third_party/material_components_ios", | 74 "//ios/third_party/material_components_ios", |
| 76 "//ios/third_party/material_roboto_font_loader_ios", | 75 "//ios/third_party/material_roboto_font_loader_ios", |
| 77 "//ios/web", | 76 "//ios/web", |
| 78 "//ui/base", | 77 "//ui/base", |
| 79 ] | 78 ] |
| 79 public_deps = [ |
| 80 "//components/payments/core", |
| 81 ] |
| 80 libs = [ "UIKit.framework" ] | 82 libs = [ "UIKit.framework" ] |
| 81 } | 83 } |
| 82 | 84 |
| 83 source_set("unit_tests") { | 85 source_set("unit_tests") { |
| 84 configs += [ "//build/config/compiler:enable_arc" ] | 86 configs += [ "//build/config/compiler:enable_arc" ] |
| 85 testonly = true | 87 testonly = true |
| 86 sources = [ | 88 sources = [ |
| 87 "payment_items_display_coordinator_unittest.mm", | 89 "payment_items_display_coordinator_unittest.mm", |
| 88 "payment_items_display_view_controller_unittest.mm", | 90 "payment_items_display_view_controller_unittest.mm", |
| 89 "payment_method_selection_coordinator_unittest.mm", | 91 "payment_method_selection_coordinator_unittest.mm", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 117 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 119 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 118 "//ios/chrome/test:test_support", | 120 "//ios/chrome/test:test_support", |
| 119 "//ios/testing:ocmock_support", | 121 "//ios/testing:ocmock_support", |
| 120 "//ios/third_party/material_components_ios", | 122 "//ios/third_party/material_components_ios", |
| 121 "//ios/web", | 123 "//ios/web", |
| 122 "//ios/web:test_support", | 124 "//ios/web:test_support", |
| 123 "//testing/gtest", | 125 "//testing/gtest", |
| 124 "//third_party/ocmock", | 126 "//third_party/ocmock", |
| 125 ] | 127 ] |
| 126 } | 128 } |
| OLD | NEW |