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

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

Issue 2888533002: Identify MostVisited by item instead of URL (Closed)
Patch Set: Reviewable Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("content_suggestions") { 5 source_set("content_suggestions") {
6 sources = [ 6 sources = [
7 "content_suggestions_collection_updater.h", 7 "content_suggestions_collection_updater.h",
8 "content_suggestions_collection_updater.mm", 8 "content_suggestions_collection_updater.mm",
9 "content_suggestions_collection_utils.h", 9 "content_suggestions_collection_utils.h",
10 "content_suggestions_collection_utils.mm", 10 "content_suggestions_collection_utils.mm",
(...skipping 11 matching lines...) Expand all
22 "//ios/chrome/app/strings", 22 "//ios/chrome/app/strings",
23 "//ios/chrome/browser/ui", 23 "//ios/chrome/browser/ui",
24 "//ios/chrome/browser/ui/collection_view", 24 "//ios/chrome/browser/ui/collection_view",
25 "//ios/chrome/browser/ui/commands", 25 "//ios/chrome/browser/ui/commands",
26 "//ios/chrome/browser/ui/content_suggestions/cells:cells_ui", 26 "//ios/chrome/browser/ui/content_suggestions/cells:cells_ui",
27 "//ios/chrome/browser/ui/content_suggestions/identifier", 27 "//ios/chrome/browser/ui/content_suggestions/identifier",
28 "//ios/chrome/browser/ui/favicon:favicon_ui", 28 "//ios/chrome/browser/ui/favicon:favicon_ui",
29 "//ios/chrome/browser/ui/toolbar", 29 "//ios/chrome/browser/ui/toolbar",
30 "//mojo/common:common_custom_types", 30 "//mojo/common:common_custom_types",
31 "//ui/base", 31 "//ui/base",
32 "//url",
33 ] 32 ]
34 public_deps = [ 33 public_deps = [
35 "//ios/third_party/material_components_ios", 34 "//ios/third_party/material_components_ios",
36 ] 35 ]
37 configs += [ "//build/config/compiler:enable_arc" ] 36 configs += [ "//build/config/compiler:enable_arc" ]
38 } 37 }
39 38
40 source_set("unit_tests") { 39 source_set("unit_tests") {
41 testonly = true 40 testonly = true
42 sources = [ 41 sources = [
(...skipping 20 matching lines...) Expand all
63 "resources/content_suggestions_no_image@2x.png", 62 "resources/content_suggestions_no_image@2x.png",
64 "resources/content_suggestions_no_image@3x.png", 63 "resources/content_suggestions_no_image@3x.png",
65 "resources/content_suggestions_offline.png", 64 "resources/content_suggestions_offline.png",
66 "resources/content_suggestions_offline@2x.png", 65 "resources/content_suggestions_offline@2x.png",
67 "resources/content_suggestions_offline@3x.png", 66 "resources/content_suggestions_offline@3x.png",
68 ] 67 ]
69 outputs = [ 68 outputs = [
70 "{{bundle_resources_dir}}/{{source_file_part}}", 69 "{{bundle_resources_dir}}/{{source_file_part}}",
71 ] 70 ]
72 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698