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 source_set("cells") { | 5 source_set("cells") { |
6 sources = [ | 6 sources = [ |
7 "accepted_payment_methods_item.h", | 7 "accepted_payment_methods_item.h", |
8 "accepted_payment_methods_item.mm", | 8 "accepted_payment_methods_item.mm", |
9 "autofill_profile_item.h", | 9 "autofill_profile_item.h", |
10 "autofill_profile_item.mm", | 10 "autofill_profile_item.mm", |
11 "page_info_item.h", | 11 "page_info_item.h", |
12 "page_info_item.mm", | 12 "page_info_item.mm", |
13 "payment_method_item.h", | 13 "payment_method_item.h", |
14 "payment_method_item.mm", | 14 "payment_method_item.mm", |
15 "payments_has_accessory_type.h", | 15 "payments_has_accessory_type.h", |
| 16 "payments_selector_edit_item.h", |
| 17 "payments_selector_edit_item.mm", |
16 "payments_text_item.h", | 18 "payments_text_item.h", |
17 "payments_text_item.mm", | 19 "payments_text_item.mm", |
18 "price_item.h", | 20 "price_item.h", |
19 "price_item.mm", | 21 "price_item.mm", |
20 ] | 22 ] |
21 | 23 |
22 deps = [ | 24 deps = [ |
23 "//ios/chrome/browser/ui", | 25 "//ios/chrome/browser/ui", |
| 26 "//ios/chrome/browser/ui/autofill:autofill_ui", |
24 "//ios/chrome/browser/ui/collection_view/cells", | 27 "//ios/chrome/browser/ui/collection_view/cells", |
25 "//ios/chrome/browser/ui/colors", | 28 "//ios/chrome/browser/ui/colors", |
26 "//ios/third_party/material_components_ios", | 29 "//ios/third_party/material_components_ios", |
27 "//ios/third_party/material_roboto_font_loader_ios", | 30 "//ios/third_party/material_roboto_font_loader_ios", |
28 ] | 31 ] |
29 | 32 |
30 configs += [ "//build/config/compiler:enable_arc" ] | 33 configs += [ "//build/config/compiler:enable_arc" ] |
31 } | 34 } |
32 | 35 |
33 source_set("unit_tests") { | 36 source_set("unit_tests") { |
34 testonly = true | 37 testonly = true |
35 sources = [ | 38 sources = [ |
36 "accepted_payment_methods_item_unittest.mm", | 39 "accepted_payment_methods_item_unittest.mm", |
37 "autofill_profile_item_unittest.mm", | 40 "autofill_profile_item_unittest.mm", |
38 "page_info_item_unittest.mm", | 41 "page_info_item_unittest.mm", |
39 "payment_method_item_unittest.mm", | 42 "payment_method_item_unittest.mm", |
| 43 "payments_selector_edit_item_unittests.mm", |
40 "payments_text_item_unittest.mm", | 44 "payments_text_item_unittest.mm", |
41 "price_item_unittest.mm", | 45 "price_item_unittest.mm", |
42 ] | 46 ] |
43 | 47 |
44 deps = [ | 48 deps = [ |
45 ":cells", | 49 ":cells", |
| 50 "//ios/chrome/browser/ui/collection_view/cells", |
46 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 51 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
47 "//ios/third_party/material_components_ios", | 52 "//ios/third_party/material_components_ios", |
48 "//testing/gtest", | 53 "//testing/gtest", |
49 ] | 54 ] |
50 | 55 |
51 configs += [ "//build/config/compiler:enable_arc" ] | 56 configs += [ "//build/config/compiler:enable_arc" ] |
52 } | 57 } |
OLD | NEW |