| 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 20 matching lines...) Expand all Loading... |
| 31 "payment_request_view_controller.h", | 31 "payment_request_view_controller.h", |
| 32 "payment_request_view_controller.mm", | 32 "payment_request_view_controller.mm", |
| 33 "payment_request_web_state_observer.h", | 33 "payment_request_web_state_observer.h", |
| 34 "payment_request_web_state_observer.mm", | 34 "payment_request_web_state_observer.mm", |
| 35 "shipping_address_selection_coordinator.h", | 35 "shipping_address_selection_coordinator.h", |
| 36 "shipping_address_selection_coordinator.mm", | 36 "shipping_address_selection_coordinator.mm", |
| 37 "shipping_address_selection_view_controller.h", | 37 "shipping_address_selection_view_controller.h", |
| 38 "shipping_address_selection_view_controller.mm", | 38 "shipping_address_selection_view_controller.mm", |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 ":injected_js", |
| 41 "//base", | 42 "//base", |
| 42 "//components/autofill/core/browser", | 43 "//components/autofill/core/browser", |
| 43 "//components/strings", | 44 "//components/strings", |
| 44 "//ios/chrome/app/strings", | 45 "//ios/chrome/app/strings", |
| 45 "//ios/chrome/browser", | 46 "//ios/chrome/browser", |
| 46 "//ios/chrome/browser/autofill", | 47 "//ios/chrome/browser/autofill", |
| 47 "//ios/chrome/browser/browser_state", | 48 "//ios/chrome/browser/browser_state", |
| 48 "//ios/chrome/browser/payments:injected_js", | |
| 49 "//ios/chrome/browser/payments/cells", | 49 "//ios/chrome/browser/payments/cells", |
| 50 "//ios/chrome/browser/ui", | 50 "//ios/chrome/browser/ui", |
| 51 "//ios/chrome/browser/ui/collection_view", | 51 "//ios/chrome/browser/ui/collection_view", |
| 52 "//ios/chrome/browser/ui/collection_view/cells", | 52 "//ios/chrome/browser/ui/collection_view/cells", |
| 53 "//ios/chrome/browser/ui/colors", | 53 "//ios/chrome/browser/ui/colors", |
| 54 "//ios/chrome/browser/ui/icons", | 54 "//ios/chrome/browser/ui/icons", |
| 55 "//ios/third_party/material_components_ios", | 55 "//ios/third_party/material_components_ios", |
| 56 "//ios/third_party/material_roboto_font_loader_ios", | 56 "//ios/third_party/material_roboto_font_loader_ios", |
| 57 "//ios/web", | 57 "//ios/web", |
| 58 "//ui/base", | 58 "//ui/base", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 76 "//ios/chrome/app/strings", | 76 "//ios/chrome/app/strings", |
| 77 "//ios/chrome/browser/ui/collection_view:test_support", | 77 "//ios/chrome/browser/ui/collection_view:test_support", |
| 78 "//ios/chrome/browser/ui/collection_view/cells", | 78 "//ios/chrome/browser/ui/collection_view/cells", |
| 79 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 79 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 80 "//ios/chrome/test:test_support", | 80 "//ios/chrome/test:test_support", |
| 81 "//ios/third_party/material_components_ios", | 81 "//ios/third_party/material_components_ios", |
| 82 "//ios/web", | 82 "//ios/web", |
| 83 "//testing/gtest", | 83 "//testing/gtest", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| OLD | NEW |