| 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", |
| 11 "content_suggestions_button_item_actions.h", | 11 "content_suggestions_button_item_actions.h", |
| 12 "content_suggestions_expandable_item.h", | 12 "content_suggestions_expandable_item.h", |
| 13 "content_suggestions_expandable_item.mm", | 13 "content_suggestions_expandable_item.mm", |
| 14 "content_suggestions_favicon_internal_cell.h", | 14 "content_suggestions_favicon_internal_cell.h", |
| 15 "content_suggestions_favicon_internal_cell.mm", | 15 "content_suggestions_favicon_internal_cell.mm", |
| 16 "content_suggestions_favicon_item.h", | 16 "content_suggestions_favicon_item.h", |
| 17 "content_suggestions_favicon_item.mm", | 17 "content_suggestions_favicon_item.mm", |
| 18 "content_suggestions_footer_item.h", | 18 "content_suggestions_footer_item.h", |
| 19 "content_suggestions_footer_item.mm", | 19 "content_suggestions_footer_item.mm", |
| 20 "content_suggestions_stack_item.h", | 20 "content_suggestions_stack_item.h", |
| 21 "content_suggestions_stack_item.mm", | 21 "content_suggestions_stack_item.mm", |
| 22 "content_suggestions_stack_item_actions.h", | 22 "content_suggestions_stack_item_actions.h", |
| 23 "content_suggestions_text_item.h", |
| 24 "content_suggestions_text_item.mm", |
| 23 "expandable_item.h", | 25 "expandable_item.h", |
| 24 ] | 26 ] |
| 25 deps = [ | 27 deps = [ |
| 26 "//base", | 28 "//base", |
| 27 "//ios/chrome/browser/ui", | 29 "//ios/chrome/browser/ui", |
| 28 "//ios/chrome/browser/ui/collection_view", | 30 "//ios/chrome/browser/ui/collection_view", |
| 29 "//ios/chrome/browser/ui/colors", | 31 "//ios/chrome/browser/ui/colors", |
| 30 "//ios/chrome/browser/ui/content_suggestions/identifier", | 32 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 31 "//ios/chrome/browser/ui/util", | 33 "//ios/chrome/browser/ui/util", |
| 32 "//ui/base", | 34 "//ui/base", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 48 deps = [ | 50 deps = [ |
| 49 ":cells", | 51 ":cells", |
| 50 "//base", | 52 "//base", |
| 51 "//ios/chrome/browser/ui/collection_view", | 53 "//ios/chrome/browser/ui/collection_view", |
| 52 "//testing/gtest", | 54 "//testing/gtest", |
| 53 "//third_party/ocmock", | 55 "//third_party/ocmock", |
| 54 "//url", | 56 "//url", |
| 55 ] | 57 ] |
| 56 configs += [ "//build/config/compiler:enable_arc" ] | 58 configs += [ "//build/config/compiler:enable_arc" ] |
| 57 } | 59 } |
| OLD | NEW |