Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: ios/chrome/browser/ui/content_suggestions/cells/BUILD.gn

Issue 2808433002: Create a MostVisited cell for ContentSuggestions (Closed)
Patch Set: Split Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_footer_item.h", 9 "content_suggestions_footer_item.h",
10 "content_suggestions_footer_item.mm", 10 "content_suggestions_footer_item.mm",
11 "content_suggestions_most_visited.h", 11 "content_suggestions_most_visited.h",
12 "content_suggestions_most_visited.mm", 12 "content_suggestions_most_visited.mm",
13 "content_suggestions_most_visited_item.h",
14 "content_suggestions_most_visited_item.mm",
lpromero 2017/04/07 12:46:56 Please add a third file for unittests.
gambard 2017/04/10 11:49:16 Done.
13 "content_suggestions_most_visited_tile.h", 15 "content_suggestions_most_visited_tile.h",
14 "content_suggestions_most_visited_tile.mm", 16 "content_suggestions_most_visited_tile.mm",
15 "content_suggestions_reading_list_item.h", 17 "content_suggestions_reading_list_item.h",
16 "content_suggestions_reading_list_item.mm", 18 "content_suggestions_reading_list_item.mm",
17 "content_suggestions_text_item.h", 19 "content_suggestions_text_item.h",
18 "content_suggestions_text_item.mm", 20 "content_suggestions_text_item.mm",
19 ] 21 ]
20 deps = [ 22 deps = [
21 "//base", 23 "//base",
22 "//ios/chrome/browser/ui", 24 "//ios/chrome/browser/ui",
(...skipping 19 matching lines...) Expand all
42 deps = [ 44 deps = [
43 ":cells", 45 ":cells",
44 "//base", 46 "//base",
45 "//ios/chrome/browser/ui/collection_view", 47 "//ios/chrome/browser/ui/collection_view",
46 "//testing/gtest", 48 "//testing/gtest",
47 "//third_party/ocmock", 49 "//third_party/ocmock",
48 "//url", 50 "//url",
49 ] 51 ]
50 configs += [ "//build/config/compiler:enable_arc" ] 52 configs += [ "//build/config/compiler:enable_arc" ]
51 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698