| 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_item.h", | 7 "content_suggestions_item.h", |
| 8 "content_suggestions_item.mm", | 8 "content_suggestions_item.mm", |
| 9 "content_suggestions_most_visited_item.h", | 9 "content_suggestions_most_visited_item.h", |
| 10 "content_suggestions_most_visited_item.mm", | 10 "content_suggestions_most_visited_item.mm", |
| 11 ] | 11 ] |
| 12 deps = [ | 12 deps = [ |
| 13 ":cells_ui", | 13 ":cells_ui", |
| 14 "//base", | 14 "//base", |
| 15 "//components/ntp_tiles", |
| 15 "//ios/chrome/browser/ui/collection_view", | 16 "//ios/chrome/browser/ui/collection_view", |
| 16 "//ios/chrome/browser/ui/content_suggestions/identifier", | 17 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 17 "//ios/chrome/browser/ui/favicon:favicon_ui", | 18 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 18 "//url", | 19 "//url", |
| 19 ] | 20 ] |
| 20 configs += [ "//build/config/compiler:enable_arc" ] | 21 configs += [ "//build/config/compiler:enable_arc" ] |
| 21 } | 22 } |
| 22 | 23 |
| 23 source_set("cells_ui") { | 24 source_set("cells_ui") { |
| 24 sources = [ | 25 sources = [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//base", | 59 "//base", |
| 59 "//ios/chrome/browser/ui", | 60 "//ios/chrome/browser/ui", |
| 60 "//ios/chrome/browser/ui/collection_view", | 61 "//ios/chrome/browser/ui/collection_view", |
| 61 "//ios/chrome/browser/ui/favicon:favicon_ui", | 62 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 62 "//testing/gtest", | 63 "//testing/gtest", |
| 63 "//third_party/ocmock", | 64 "//third_party/ocmock", |
| 64 "//url", | 65 "//url", |
| 65 ] | 66 ] |
| 66 configs += [ "//build/config/compiler:enable_arc" ] | 67 configs += [ "//build/config/compiler:enable_arc" ] |
| 67 } | 68 } |
| OLD | NEW |