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

Side by Side Diff: components/ntp_tiles/BUILD.gn

Issue 2457033003: Add chrome://popular-sites-internals/ to iOS. (Closed)
Patch Set: Break out ...Client. Created 4 years, 1 month 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
« no previous file with comments | « chrome/browser/ui/webui/popular_sites_internals_ui.cc ('k') | components/ntp_tiles/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 static_library("ntp_tiles") { 9 static_library("ntp_tiles") {
10 sources = [ 10 sources = [
11 "constants.cc", 11 "constants.cc",
12 "constants.h", 12 "constants.h",
13 "icon_cacher.cc", 13 "icon_cacher.cc",
14 "icon_cacher.h", 14 "icon_cacher.h",
15 "metrics.cc", 15 "metrics.cc",
16 "metrics.h", 16 "metrics.h",
17 "most_visited_sites.cc", 17 "most_visited_sites.cc",
18 "most_visited_sites.h", 18 "most_visited_sites.h",
19 "ntp_tile.cc", 19 "ntp_tile.cc",
20 "ntp_tile.h", 20 "ntp_tile.h",
21 "popular_sites.cc", 21 "popular_sites.cc",
22 "popular_sites.h", 22 "popular_sites.h",
23 "pref_names.cc", 23 "pref_names.cc",
24 "pref_names.h", 24 "pref_names.h",
25 "switches.cc", 25 "switches.cc",
26 "switches.h", 26 "switches.h",
27 "webui/popular_sites_internals_message_handler.cc",
28 "webui/popular_sites_internals_message_handler.h",
27 ] 29 ]
28 30
29 public_deps = [ 31 public_deps = [
30 "//base", 32 "//base",
31 "//components/history/core/browser", 33 "//components/history/core/browser",
32 "//components/suggestions", 34 "//components/suggestions",
33 ] 35 ]
34 deps = [ 36 deps = [
35 "//components/data_use_measurement/core", 37 "//components/data_use_measurement/core",
36 "//components/favicon/core", 38 "//components/favicon/core",
37 "//components/favicon_base", 39 "//components/favicon_base",
38 "//components/google/core/browser", 40 "//components/google/core/browser",
39 "//components/image_fetcher", 41 "//components/image_fetcher",
40 "//components/pref_registry", 42 "//components/pref_registry",
41 "//components/prefs", 43 "//components/prefs",
42 "//components/search_engines", 44 "//components/search_engines",
45 "//components/url_formatter",
43 "//components/variations", 46 "//components/variations",
44 "//components/variations/service", 47 "//components/variations/service",
45 ] 48 ]
46 49
47 if (is_android) { 50 if (is_android) {
48 deps += [ "android:ntp_tiles_jni_headers" ] 51 deps += [ "android:ntp_tiles_jni_headers" ]
49 } 52 }
50 } 53 }
51 54
52 source_set("unit_tests") { 55 source_set("unit_tests") {
(...skipping 15 matching lines...) Expand all
68 } 71 }
69 72
70 if (is_android) { 73 if (is_android) {
71 java_cpp_enum("ntp_tiles_enums_java") { 74 java_cpp_enum("ntp_tiles_enums_java") {
72 sources = [ 75 sources = [
73 "metrics.h", 76 "metrics.h",
74 "ntp_tile.h", 77 "ntp_tile.h",
75 ] 78 ]
76 } 79 }
77 } 80 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/popular_sites_internals_ui.cc ('k') | components/ntp_tiles/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698