Chromium Code Reviews| 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+Private.h", | |
|
lpromero
2017/04/13 21:42:58
collection_view_item+collection_view_controller.h
Moe
2017/04/14 02:55:37
Done.
| |
| 17 "collection_view_item.h", | 18 "collection_view_item.h", |
| 18 "collection_view_item.mm", | 19 "collection_view_item.mm", |
| 19 "collection_view_switch_item.h", | 20 "collection_view_switch_item.h", |
| 20 "collection_view_switch_item.mm", | 21 "collection_view_switch_item.mm", |
| 21 "collection_view_text_cell.h", | 22 "collection_view_text_cell.h", |
| 22 "collection_view_text_cell.mm", | 23 "collection_view_text_cell.mm", |
| 23 "collection_view_text_item.h", | 24 "collection_view_text_item.h", |
| 24 "collection_view_text_item.mm", | 25 "collection_view_text_item.mm", |
| 25 ] | 26 ] |
| 26 | 27 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 ":cells", | 69 ":cells", |
| 69 ":test_support", | 70 ":test_support", |
| 70 "//ios/third_party/material_components_ios", | 71 "//ios/third_party/material_components_ios", |
| 71 "//testing/gtest", | 72 "//testing/gtest", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 configs += [ "//build/config/compiler:enable_arc" ] | 75 configs += [ "//build/config/compiler:enable_arc" ] |
| 75 } | 76 } |
| OLD | NEW |