| 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", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//url", | 34 "//url", |
| 35 ] | 35 ] |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 "//ios/third_party/material_components_ios", | 37 "//ios/third_party/material_components_ios", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 configs += [ "//build/config/compiler:enable_arc" ] | 40 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 source_set("test_support") { | 43 source_set("test_support") { |
| 44 configs += [ "//build/config/compiler:enable_arc" ] |
| 44 testonly = true | 45 testonly = true |
| 45 sources = [ | 46 sources = [ |
| 46 "test_utils.h", | 47 "test_utils.h", |
| 47 "test_utils.mm", | 48 "test_utils.mm", |
| 48 ] | 49 ] |
| 49 } | 50 } |
| 50 | 51 |
| 51 source_set("unit_tests") { | 52 source_set("unit_tests") { |
| 52 testonly = true | 53 testonly = true |
| 53 sources = [ | 54 sources = [ |
| 54 "MDCCollectionViewCell+Chrome_unittest.mm", | 55 "MDCCollectionViewCell+Chrome_unittest.mm", |
| 55 "activity_indicator_cell_unittest.mm", | 56 "activity_indicator_cell_unittest.mm", |
| 56 "collection_view_account_item_unittest.mm", | 57 "collection_view_account_item_unittest.mm", |
| 57 "collection_view_detail_item_unittest.mm", | 58 "collection_view_detail_item_unittest.mm", |
| 58 "collection_view_footer_item_unittest.mm", | 59 "collection_view_footer_item_unittest.mm", |
| 59 "collection_view_item_unittest.mm", | 60 "collection_view_item_unittest.mm", |
| 60 "collection_view_switch_item_unittest.mm", | 61 "collection_view_switch_item_unittest.mm", |
| 61 "collection_view_text_item_unittest.mm", | 62 "collection_view_text_item_unittest.mm", |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 deps = [ | 65 deps = [ |
| 65 ":cells", | 66 ":cells", |
| 66 ":test_support", | 67 ":test_support", |
| 67 "//ios/third_party/material_components_ios", | 68 "//ios/third_party/material_components_ios", |
| 68 "//testing/gtest", | 69 "//testing/gtest", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 configs += [ "//build/config/compiler:enable_arc" ] | 72 configs += [ "//build/config/compiler:enable_arc" ] |
| 72 } | 73 } |
| OLD | NEW |