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

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

Issue 2825143002: [Payment Request] Accepted credit card type icons in the credit card editor (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
« no previous file with comments | « no previous file | ios/chrome/browser/payments/cells/accepted_payment_methods_item.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("cells") { 5 source_set("cells") {
6 sources = [ 6 sources = [
7 "accepted_payment_methods_item.h",
8 "accepted_payment_methods_item.mm",
7 "autofill_profile_item.h", 9 "autofill_profile_item.h",
8 "autofill_profile_item.mm", 10 "autofill_profile_item.mm",
9 "page_info_item.h", 11 "page_info_item.h",
10 "page_info_item.mm", 12 "page_info_item.mm",
11 "payment_method_item.h", 13 "payment_method_item.h",
12 "payment_method_item.mm", 14 "payment_method_item.mm",
13 "payments_has_accessory_type.h", 15 "payments_has_accessory_type.h",
14 "payments_text_item.h", 16 "payments_text_item.h",
15 "payments_text_item.mm", 17 "payments_text_item.mm",
16 "price_item.h", 18 "price_item.h",
17 "price_item.mm", 19 "price_item.mm",
18 ] 20 ]
19 21
20 deps = [ 22 deps = [
21 "//ios/chrome/browser/ui", 23 "//ios/chrome/browser/ui",
22 "//ios/chrome/browser/ui/collection_view/cells", 24 "//ios/chrome/browser/ui/collection_view/cells",
23 "//ios/chrome/browser/ui/colors", 25 "//ios/chrome/browser/ui/colors",
24 "//ios/third_party/material_components_ios", 26 "//ios/third_party/material_components_ios",
25 "//ios/third_party/material_roboto_font_loader_ios", 27 "//ios/third_party/material_roboto_font_loader_ios",
26 ] 28 ]
27 29
28 configs += [ "//build/config/compiler:enable_arc" ] 30 configs += [ "//build/config/compiler:enable_arc" ]
29 } 31 }
30 32
31 source_set("unit_tests") { 33 source_set("unit_tests") {
32 testonly = true 34 testonly = true
33 sources = [ 35 sources = [
36 "accepted_payment_methods_item_unittest.mm",
34 "autofill_profile_item_unittest.mm", 37 "autofill_profile_item_unittest.mm",
35 "page_info_item_unittest.mm", 38 "page_info_item_unittest.mm",
36 "payment_method_item_unittest.mm", 39 "payment_method_item_unittest.mm",
37 "payments_text_item_unittest.mm", 40 "payments_text_item_unittest.mm",
38 "price_item_unittest.mm", 41 "price_item_unittest.mm",
39 ] 42 ]
40 43
41 deps = [ 44 deps = [
42 ":cells", 45 ":cells",
43 "//ios/chrome/browser/ui/collection_view/cells:test_support", 46 "//ios/chrome/browser/ui/collection_view/cells:test_support",
44 "//ios/third_party/material_components_ios", 47 "//ios/third_party/material_components_ios",
45 "//testing/gtest", 48 "//testing/gtest",
46 ] 49 ]
47 50
48 configs += [ "//build/config/compiler:enable_arc" ] 51 configs += [ "//build/config/compiler:enable_arc" ]
49 } 52 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/payments/cells/accepted_payment_methods_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698