Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: ios/chrome/browser/payments/BUILD.gn

Issue 2778343002: [Payment Request] Picker view + showcase integration + egtests (Closed)
Patch Set: Addressed comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 source_set("payments_ui") { 84 source_set("payments_ui") {
85 configs += [ "//build/config/compiler:enable_arc" ] 85 configs += [ "//build/config/compiler:enable_arc" ]
86 sources = [ 86 sources = [
87 "payment_request_edit_view_controller+internal.h", 87 "payment_request_edit_view_controller+internal.h",
88 "payment_request_edit_view_controller.h", 88 "payment_request_edit_view_controller.h",
89 "payment_request_edit_view_controller.mm", 89 "payment_request_edit_view_controller.mm",
90 "payment_request_edit_view_controller_actions.h", 90 "payment_request_edit_view_controller_actions.h",
91 "payment_request_editor_field.h", 91 "payment_request_editor_field.h",
92 "payment_request_editor_field.mm", 92 "payment_request_editor_field.mm",
93 "payment_request_picker_row.h",
94 "payment_request_picker_row.mm",
95 "payment_request_picker_view_controller.h",
96 "payment_request_picker_view_controller.mm",
93 ] 97 ]
94 deps = [ 98 deps = [
95 "//base", 99 "//base",
96 "//components/autofill/core/browser", 100 "//components/autofill/core/browser",
97 "//components/strings", 101 "//components/strings",
98 "//ios/chrome/app/theme", 102 "//ios/chrome/app/theme",
99 "//ios/chrome/browser/payments/cells", 103 "//ios/chrome/browser/payments/cells",
100 "//ios/chrome/browser/ui", 104 "//ios/chrome/browser/ui",
101 "//ios/chrome/browser/ui/collection_view", 105 "//ios/chrome/browser/ui/collection_view",
102 "//ios/chrome/browser/ui/colors", 106 "//ios/chrome/browser/ui/colors",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "//ios/chrome/browser/ui/collection_view/cells:test_support", 149 "//ios/chrome/browser/ui/collection_view/cells:test_support",
146 "//ios/chrome/test:test_support", 150 "//ios/chrome/test:test_support",
147 "//ios/testing:ocmock_support", 151 "//ios/testing:ocmock_support",
148 "//ios/third_party/material_components_ios", 152 "//ios/third_party/material_components_ios",
149 "//ios/web", 153 "//ios/web",
150 "//ios/web:test_support", 154 "//ios/web:test_support",
151 "//testing/gtest", 155 "//testing/gtest",
152 "//third_party/ocmock", 156 "//third_party/ocmock",
153 ] 157 ]
154 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698