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

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

Issue 2774663002: [Remote suggestions] Refactor the scheduler (Closed)
Patch Set: Add missing files & make it compile Created 3 years, 9 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "remote/remote_suggestion.h", 54 "remote/remote_suggestion.h",
55 "remote/remote_suggestions_database.cc", 55 "remote/remote_suggestions_database.cc",
56 "remote/remote_suggestions_database.h", 56 "remote/remote_suggestions_database.h",
57 "remote/remote_suggestions_fetcher.cc", 57 "remote/remote_suggestions_fetcher.cc",
58 "remote/remote_suggestions_fetcher.h", 58 "remote/remote_suggestions_fetcher.h",
59 "remote/remote_suggestions_provider.cc", 59 "remote/remote_suggestions_provider.cc",
60 "remote/remote_suggestions_provider.h", 60 "remote/remote_suggestions_provider.h",
61 "remote/remote_suggestions_provider_impl.cc", 61 "remote/remote_suggestions_provider_impl.cc",
62 "remote/remote_suggestions_provider_impl.h", 62 "remote/remote_suggestions_provider_impl.h",
63 "remote/remote_suggestions_scheduler.h", 63 "remote/remote_suggestions_scheduler.h",
64 "remote/remote_suggestions_scheduler_impl.cc",
65 "remote/remote_suggestions_scheduler_impl.h",
64 "remote/remote_suggestions_status_service.cc", 66 "remote/remote_suggestions_status_service.cc",
65 "remote/remote_suggestions_status_service.h", 67 "remote/remote_suggestions_status_service.h",
66 "remote/request_params.cc", 68 "remote/request_params.cc",
67 "remote/request_params.h", 69 "remote/request_params.h",
68 "remote/request_throttler.cc", 70 "remote/request_throttler.cc",
69 "remote/request_throttler.h", 71 "remote/request_throttler.h",
70 "remote/scheduling_remote_suggestions_provider.cc",
71 "remote/scheduling_remote_suggestions_provider.h",
72 "sessions/foreign_sessions_suggestions_provider.cc", 72 "sessions/foreign_sessions_suggestions_provider.cc",
73 "sessions/foreign_sessions_suggestions_provider.h", 73 "sessions/foreign_sessions_suggestions_provider.h",
74 "sessions/tab_delegate_sync_adapter.cc", 74 "sessions/tab_delegate_sync_adapter.cc",
75 "sessions/tab_delegate_sync_adapter.h", 75 "sessions/tab_delegate_sync_adapter.h",
76 "status.cc", 76 "status.cc",
77 "status.h", 77 "status.h",
78 "switches.cc", 78 "switches.cc",
79 "switches.h", 79 "switches.h",
80 "user_classifier.cc", 80 "user_classifier.cc",
81 "user_classifier.h", 81 "user_classifier.h",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 205
206 deps = [ 206 deps = [
207 ":ntp_snippets", 207 ":ntp_snippets",
208 "//base", 208 "//base",
209 "//components/offline_pages/core", 209 "//components/offline_pages/core",
210 "//components/offline_pages/core:test_support", 210 "//components/offline_pages/core:test_support",
211 "//testing/gmock", 211 "//testing/gmock",
212 "//testing/gtest", 212 "//testing/gtest",
213 ] 213 ]
214 } 214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698