| 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 "autofill_profile_item.h", | 7 "autofill_profile_item.h", |
| 8 "autofill_profile_item.mm", | 8 "autofill_profile_item.mm", |
| 9 "page_info_item.h", | 9 "page_info_item.h", |
| 10 "page_info_item.mm", | 10 "page_info_item.mm", |
| 11 "payment_method_item.h", | 11 "payment_method_item.h", |
| 12 "payment_method_item.mm", | 12 "payment_method_item.mm", |
| 13 "payments_has_accessory_type.h", |
| 13 "payments_text_item.h", | 14 "payments_text_item.h", |
| 14 "payments_text_item.mm", | 15 "payments_text_item.mm", |
| 15 "price_item.h", | 16 "price_item.h", |
| 16 "price_item.mm", | 17 "price_item.mm", |
| 17 ] | 18 ] |
| 18 | 19 |
| 19 deps = [ | 20 deps = [ |
| 20 "//ios/chrome/browser/ui", | 21 "//ios/chrome/browser/ui", |
| 21 "//ios/chrome/browser/ui/collection_view/cells", | 22 "//ios/chrome/browser/ui/collection_view/cells", |
| 22 "//ios/chrome/browser/ui/colors", | 23 "//ios/chrome/browser/ui/colors", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 39 | 40 |
| 40 deps = [ | 41 deps = [ |
| 41 ":cells", | 42 ":cells", |
| 42 "//ios/chrome/browser/ui/collection_view/cells:test_support", | 43 "//ios/chrome/browser/ui/collection_view/cells:test_support", |
| 43 "//ios/third_party/material_components_ios", | 44 "//ios/third_party/material_components_ios", |
| 44 "//testing/gtest", | 45 "//testing/gtest", |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 configs += [ "//build/config/compiler:enable_arc" ] | 48 configs += [ "//build/config/compiler:enable_arc" ] |
| 48 } | 49 } |
| OLD | NEW |