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

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

Issue 2149453004: Implement first version of OfflinePageSuggestionsProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove separate build target for offline_page_suggestions Created 4 years, 5 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
« no previous file with comments | « components/ntp_snippets.gypi ('k') | components/ntp_snippets/content_suggestions_category.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 16 matching lines...) Expand all
27 "ntp_snippets_constants.h", 27 "ntp_snippets_constants.h",
28 "ntp_snippets_database.cc", 28 "ntp_snippets_database.cc",
29 "ntp_snippets_database.h", 29 "ntp_snippets_database.h",
30 "ntp_snippets_fetcher.cc", 30 "ntp_snippets_fetcher.cc",
31 "ntp_snippets_fetcher.h", 31 "ntp_snippets_fetcher.h",
32 "ntp_snippets_scheduler.h", 32 "ntp_snippets_scheduler.h",
33 "ntp_snippets_service.cc", 33 "ntp_snippets_service.cc",
34 "ntp_snippets_service.h", 34 "ntp_snippets_service.h",
35 "ntp_snippets_status_service.cc", 35 "ntp_snippets_status_service.cc",
36 "ntp_snippets_status_service.h", 36 "ntp_snippets_status_service.h",
37 "offline_pages/offline_page_suggestions_provider.cc",
38 "offline_pages/offline_page_suggestions_provider.h",
37 "pref_names.cc", 39 "pref_names.cc",
38 "pref_names.h", 40 "pref_names.h",
39 "switches.cc", 41 "switches.cc",
40 "switches.h", 42 "switches.h",
41 ] 43 ]
42 44
43 public_deps = [ 45 public_deps = [
44 "//base", 46 "//base",
45 "//components/keyed_service/core", 47 "//components/keyed_service/core",
46 "//components/leveldb_proto", 48 "//components/leveldb_proto",
47 "//components/prefs", 49 "//components/prefs",
48 "//components/signin/core/browser", 50 "//components/signin/core/browser",
49 "//components/suggestions", 51 "//components/suggestions",
50 "//components/sync_driver", 52 "//components/sync_driver",
51 "//google_apis", 53 "//google_apis",
52 "//net", 54 "//net",
53 "//url", 55 "//url",
54 ] 56 ]
55 57
56 deps = [ 58 deps = [
57 "//components/data_use_measurement/core", 59 "//components/data_use_measurement/core",
58 "//components/image_fetcher", 60 "//components/image_fetcher",
59 "//components/metrics", 61 "//components/metrics",
60 "//components/ntp_snippets/proto", 62 "//components/ntp_snippets/proto",
63 "//components/offline_pages",
61 "//components/variations", 64 "//components/variations",
62 "//third_party/icu/", 65 "//third_party/icu/",
63 "//ui/gfx", 66 "//ui/gfx",
64 ] 67 ]
65 } 68 }
66 69
67 if (is_android) { 70 if (is_android) {
68 java_cpp_enum("ntp_snippets_java_enums_srcjar") { 71 java_cpp_enum("ntp_snippets_java_enums_srcjar") {
69 sources = [ 72 sources = [
70 "ntp_snippets_status_service.h", 73 "ntp_snippets_status_service.h",
(...skipping 21 matching lines...) Expand all
92 "//components/leveldb_proto:test_support", 95 "//components/leveldb_proto:test_support",
93 "//components/signin/core/browser:test_support", 96 "//components/signin/core/browser:test_support",
94 "//components/signin/core/common", 97 "//components/signin/core/common",
95 "//components/sync_driver:test_support", 98 "//components/sync_driver:test_support",
96 "//components/variations", 99 "//components/variations",
97 "//net:test_support", 100 "//net:test_support",
98 "//testing/gtest", 101 "//testing/gtest",
99 "//third_party/icu/", 102 "//third_party/icu/",
100 ] 103 ]
101 } 104 }
OLDNEW
« no previous file with comments | « components/ntp_snippets.gypi ('k') | components/ntp_snippets/content_suggestions_category.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698