| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 "content_suggestions_article_item.h", | 7 "content_suggestions_article_item.h", |
| 8 "content_suggestions_article_item.mm", | 8 "content_suggestions_article_item.mm", |
| 9 "content_suggestions_button_item.h", | 9 "content_suggestions_button_item.h", |
| 10 "content_suggestions_button_item.mm", | 10 "content_suggestions_button_item.mm", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "content_suggestions_text_item.h", | 25 "content_suggestions_text_item.h", |
| 26 "content_suggestions_text_item.mm", | 26 "content_suggestions_text_item.mm", |
| 27 "expandable_item.h", | 27 "expandable_item.h", |
| 28 ] | 28 ] |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//ios/chrome/browser/ui", | 31 "//ios/chrome/browser/ui", |
| 32 "//ios/chrome/browser/ui/collection_view", | 32 "//ios/chrome/browser/ui/collection_view", |
| 33 "//ios/chrome/browser/ui/colors", | 33 "//ios/chrome/browser/ui/colors", |
| 34 "//ios/chrome/browser/ui/content_suggestions/identifier", | 34 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 35 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 35 "//ios/chrome/browser/ui/reading_list", | 36 "//ios/chrome/browser/ui/reading_list", |
| 36 "//ios/chrome/browser/ui/util", | 37 "//ios/chrome/browser/ui/util", |
| 37 "//ui/base", | 38 "//ui/base", |
| 38 "//url", | 39 "//url", |
| 39 ] | 40 ] |
| 40 configs += [ "//build/config/compiler:enable_arc" ] | 41 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 } | 42 } |
| 42 | 43 |
| 43 source_set("unit_tests") { | 44 source_set("unit_tests") { |
| 44 testonly = true | 45 testonly = true |
| 45 sources = [ | 46 sources = [ |
| 46 "content_suggestions_article_item_unittest.mm", | 47 "content_suggestions_article_item_unittest.mm", |
| 47 "content_suggestions_button_item_unittest.mm", | 48 "content_suggestions_button_item_unittest.mm", |
| 48 "content_suggestions_expandable_item_unittest.mm", | 49 "content_suggestions_expandable_item_unittest.mm", |
| 49 "content_suggestions_favicon_item_unittest.mm", | 50 "content_suggestions_favicon_item_unittest.mm", |
| 50 "content_suggestions_footer_item_unittest.mm", | 51 "content_suggestions_footer_item_unittest.mm", |
| 51 "content_suggestions_stack_item_unittest.mm", | 52 "content_suggestions_stack_item_unittest.mm", |
| 52 ] | 53 ] |
| 53 deps = [ | 54 deps = [ |
| 54 ":cells", | 55 ":cells", |
| 55 "//base", | 56 "//base", |
| 56 "//ios/chrome/browser/ui/collection_view", | 57 "//ios/chrome/browser/ui/collection_view", |
| 57 "//testing/gtest", | 58 "//testing/gtest", |
| 58 "//third_party/ocmock", | 59 "//third_party/ocmock", |
| 59 "//url", | 60 "//url", |
| 60 ] | 61 ] |
| 61 configs += [ "//build/config/compiler:enable_arc" ] | 62 configs += [ "//build/config/compiler:enable_arc" ] |
| 62 } | 63 } |
| OLD | NEW |