| 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", |
| 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 } |
| OLD | NEW |