Chromium Code Reviews| 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", | 23 "content_suggestions_text_item.h", |
| 24 "content_suggestions_text_item.mm", | 24 "content_suggestions_text_item.mm", |
| 25 "expandable_item.h", | 25 "expandable_item.h", |
| 26 ] | 26 ] |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//ios/chrome/browser/favicon", | |
|
lpromero
2017/03/29 14:05:14
Don't you miss //ios/chrome/browser/ui/favicon for
gambard
2017/03/29 14:17:42
Done.
| |
| 29 "//ios/chrome/browser/ui", | 30 "//ios/chrome/browser/ui", |
| 30 "//ios/chrome/browser/ui/collection_view", | 31 "//ios/chrome/browser/ui/collection_view", |
| 31 "//ios/chrome/browser/ui/colors", | 32 "//ios/chrome/browser/ui/colors", |
| 32 "//ios/chrome/browser/ui/content_suggestions/identifier", | 33 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 33 "//ios/chrome/browser/ui/util", | 34 "//ios/chrome/browser/ui/util", |
| 34 "//ui/base", | 35 "//ui/base", |
| 35 "//url", | 36 "//url", |
| 36 ] | 37 ] |
| 37 configs += [ "//build/config/compiler:enable_arc" ] | 38 configs += [ "//build/config/compiler:enable_arc" ] |
| 38 } | 39 } |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 50 deps = [ | 51 deps = [ |
| 51 ":cells", | 52 ":cells", |
| 52 "//base", | 53 "//base", |
| 53 "//ios/chrome/browser/ui/collection_view", | 54 "//ios/chrome/browser/ui/collection_view", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 "//third_party/ocmock", | 56 "//third_party/ocmock", |
| 56 "//url", | 57 "//url", |
| 57 ] | 58 ] |
| 58 configs += [ "//build/config/compiler:enable_arc" ] | 59 configs += [ "//build/config/compiler:enable_arc" ] |
| 59 } | 60 } |
| OLD | NEW |