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

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

Issue 2774663002: [Remote suggestions] Refactor the scheduler (Closed)
Patch Set: Marc's nits #2 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 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "remote/remote_suggestion.h", 56 "remote/remote_suggestion.h",
57 "remote/remote_suggestions_database.cc", 57 "remote/remote_suggestions_database.cc",
58 "remote/remote_suggestions_database.h", 58 "remote/remote_suggestions_database.h",
59 "remote/remote_suggestions_fetcher.cc", 59 "remote/remote_suggestions_fetcher.cc",
60 "remote/remote_suggestions_fetcher.h", 60 "remote/remote_suggestions_fetcher.h",
61 "remote/remote_suggestions_provider.cc", 61 "remote/remote_suggestions_provider.cc",
62 "remote/remote_suggestions_provider.h", 62 "remote/remote_suggestions_provider.h",
63 "remote/remote_suggestions_provider_impl.cc", 63 "remote/remote_suggestions_provider_impl.cc",
64 "remote/remote_suggestions_provider_impl.h", 64 "remote/remote_suggestions_provider_impl.h",
65 "remote/remote_suggestions_scheduler.h", 65 "remote/remote_suggestions_scheduler.h",
66 "remote/remote_suggestions_scheduler_impl.cc",
67 "remote/remote_suggestions_scheduler_impl.h",
66 "remote/remote_suggestions_status_service.cc", 68 "remote/remote_suggestions_status_service.cc",
67 "remote/remote_suggestions_status_service.h", 69 "remote/remote_suggestions_status_service.h",
68 "remote/request_params.cc", 70 "remote/request_params.cc",
69 "remote/request_params.h", 71 "remote/request_params.h",
70 "remote/request_throttler.cc", 72 "remote/request_throttler.cc",
71 "remote/request_throttler.h", 73 "remote/request_throttler.h",
72 "remote/scheduling_remote_suggestions_provider.cc",
73 "remote/scheduling_remote_suggestions_provider.h",
74 "sessions/foreign_sessions_suggestions_provider.cc", 74 "sessions/foreign_sessions_suggestions_provider.cc",
75 "sessions/foreign_sessions_suggestions_provider.h", 75 "sessions/foreign_sessions_suggestions_provider.h",
76 "sessions/tab_delegate_sync_adapter.cc", 76 "sessions/tab_delegate_sync_adapter.cc",
77 "sessions/tab_delegate_sync_adapter.h", 77 "sessions/tab_delegate_sync_adapter.h",
78 "status.cc", 78 "status.cc",
79 "status.h", 79 "status.h",
80 "switches.cc", 80 "switches.cc",
81 "switches.h", 81 "switches.h",
82 "user_classifier.cc", 82 "user_classifier.cc",
83 "user_classifier.h", 83 "user_classifier.h",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "content_suggestions_metrics_unittest.cc", 143 "content_suggestions_metrics_unittest.cc",
144 "content_suggestions_service_unittest.cc", 144 "content_suggestions_service_unittest.cc",
145 "offline_pages/recent_tab_suggestions_provider_unittest.cc", 145 "offline_pages/recent_tab_suggestions_provider_unittest.cc",
146 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", 146 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc",
147 "reading_list/reading_list_suggestions_provider_unittest.cc", 147 "reading_list/reading_list_suggestions_provider_unittest.cc",
148 "remote/json_request_unittest.cc", 148 "remote/json_request_unittest.cc",
149 "remote/remote_suggestion_unittest.cc", 149 "remote/remote_suggestion_unittest.cc",
150 "remote/remote_suggestions_database_unittest.cc", 150 "remote/remote_suggestions_database_unittest.cc",
151 "remote/remote_suggestions_fetcher_unittest.cc", 151 "remote/remote_suggestions_fetcher_unittest.cc",
152 "remote/remote_suggestions_provider_impl_unittest.cc", 152 "remote/remote_suggestions_provider_impl_unittest.cc",
153 "remote/remote_suggestions_scheduler_impl_unittest.cc",
153 "remote/remote_suggestions_status_service_unittest.cc", 154 "remote/remote_suggestions_status_service_unittest.cc",
154 "remote/request_throttler_unittest.cc", 155 "remote/request_throttler_unittest.cc",
155 "remote/scheduling_remote_suggestions_provider_unittest.cc",
156 "remote/test_utils.cc", 156 "remote/test_utils.cc",
157 "remote/test_utils.h", 157 "remote/test_utils.h",
158 "sessions/foreign_sessions_suggestions_provider_unittest.cc", 158 "sessions/foreign_sessions_suggestions_provider_unittest.cc",
159 "sessions/tab_delegate_sync_adapter_unittest.cc", 159 "sessions/tab_delegate_sync_adapter_unittest.cc",
160 "user_classifier_unittest.cc", 160 "user_classifier_unittest.cc",
161 ] 161 ]
162 162
163 deps = [ 163 deps = [
164 ":ntp_snippets", 164 ":ntp_snippets",
165 ":test_support", 165 ":test_support",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 deps = [ 213 deps = [
214 ":ntp_snippets", 214 ":ntp_snippets",
215 "//base", 215 "//base",
216 "//components/offline_pages/core", 216 "//components/offline_pages/core",
217 "//components/offline_pages/core:test_support", 217 "//components/offline_pages/core:test_support",
218 "//testing/gmock", 218 "//testing/gmock",
219 "//testing/gtest", 219 "//testing/gtest",
220 ] 220 ]
221 } 221 }
OLDNEW
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | components/ntp_snippets/content_suggestions_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698