| 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 "MDCCollectionViewCell+Chrome.h", | 7 "MDCCollectionViewCell+Chrome.h", |
| 8 "MDCCollectionViewCell+Chrome.mm", | 8 "MDCCollectionViewCell+Chrome.mm", |
| 9 "activity_indicator_cell.h", | 9 "activity_indicator_cell.h", |
| 10 "activity_indicator_cell.mm", | 10 "activity_indicator_cell.mm", |
| 11 "collection_view_account_item.h", | 11 "collection_view_account_item.h", |
| 12 "collection_view_account_item.mm", | 12 "collection_view_account_item.mm", |
| 13 "collection_view_detail_item.h", | 13 "collection_view_detail_item.h", |
| 14 "collection_view_detail_item.mm", | 14 "collection_view_detail_item.mm", |
| 15 "collection_view_footer_item.h", | 15 "collection_view_footer_item.h", |
| 16 "collection_view_footer_item.mm", | 16 "collection_view_footer_item.mm", |
| 17 "collection_view_item.h", | 17 "collection_view_item.h", |
| 18 "collection_view_item.mm", | 18 "collection_view_item.mm", |
| 19 "collection_view_switch_item.h", | 19 "collection_view_switch_item.h", |
| 20 "collection_view_switch_item.mm", | 20 "collection_view_switch_item.mm", |
| 21 "collection_view_text_cell.h", |
| 22 "collection_view_text_cell.mm", |
| 21 "collection_view_text_item.h", | 23 "collection_view_text_item.h", |
| 22 "collection_view_text_item.mm", | 24 "collection_view_text_item.mm", |
| 23 ] | 25 ] |
| 24 | 26 |
| 25 deps = [ | 27 deps = [ |
| 26 "//base", | 28 "//base", |
| 27 "//ios/chrome/app/strings", | 29 "//ios/chrome/app/strings", |
| 28 "//ios/chrome/browser/ui/colors", | 30 "//ios/chrome/browser/ui/colors", |
| 29 "//ios/chrome/browser/ui/material_components", | 31 "//ios/chrome/browser/ui/material_components", |
| 30 "//ios/chrome/browser/ui/util", | 32 "//ios/chrome/browser/ui/util", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 66 |
| 65 deps = [ | 67 deps = [ |
| 66 ":cells", | 68 ":cells", |
| 67 ":test_support", | 69 ":test_support", |
| 68 "//ios/third_party/material_components_ios", | 70 "//ios/third_party/material_components_ios", |
| 69 "//testing/gtest", | 71 "//testing/gtest", |
| 70 ] | 72 ] |
| 71 | 73 |
| 72 configs += [ "//build/config/compiler:enable_arc" ] | 74 configs += [ "//build/config/compiler:enable_arc" ] |
| 73 } | 75 } |
| OLD | NEW |