| 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_footer_item.h", | 7 "content_suggestions_footer_item.h", |
| 8 "content_suggestions_footer_item.mm", | 8 "content_suggestions_footer_item.mm", |
| 9 "content_suggestions_item.h", | 9 "content_suggestions_item.h", |
| 10 "content_suggestions_item.mm", | 10 "content_suggestions_item.mm", |
| 11 "content_suggestions_most_visited_item.h", | 11 "content_suggestions_most_visited_item.h", |
| 12 "content_suggestions_most_visited_item.mm", | 12 "content_suggestions_most_visited_item.mm", |
| 13 "content_suggestions_text_item.h", | 13 "content_suggestions_text_item.h", |
| 14 "content_suggestions_text_item.mm", | 14 "content_suggestions_text_item.mm", |
| 15 "suggested_content.h", |
| 15 ] | 16 ] |
| 16 deps = [ | 17 deps = [ |
| 17 "//base", | 18 "//base", |
| 18 "//ios/chrome/browser/ui", | 19 "//ios/chrome/browser/ui", |
| 19 "//ios/chrome/browser/ui/collection_view", | 20 "//ios/chrome/browser/ui/collection_view", |
| 20 "//ios/chrome/browser/ui/colors", | 21 "//ios/chrome/browser/ui/colors", |
| 21 "//ios/chrome/browser/ui/content_suggestions/identifier", | 22 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 22 "//ios/chrome/browser/ui/favicon:favicon_ui", | 23 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 23 "//ios/chrome/browser/ui/util", | 24 "//ios/chrome/browser/ui/util", |
| 24 "//ui/base", | 25 "//ui/base", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 39 "//base", | 40 "//base", |
| 40 "//ios/chrome/browser/ui", | 41 "//ios/chrome/browser/ui", |
| 41 "//ios/chrome/browser/ui/collection_view", | 42 "//ios/chrome/browser/ui/collection_view", |
| 42 "//ios/chrome/browser/ui/favicon:favicon_ui", | 43 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 43 "//testing/gtest", | 44 "//testing/gtest", |
| 44 "//third_party/ocmock", | 45 "//third_party/ocmock", |
| 45 "//url", | 46 "//url", |
| 46 ] | 47 ] |
| 47 configs += [ "//build/config/compiler:enable_arc" ] | 48 configs += [ "//build/config/compiler:enable_arc" ] |
| 48 } | 49 } |
| OLD | NEW |