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

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

Issue 2925053003: [NTP::Push] Adding BreakingNewsSuggestionsProvider (Closed)
Patch Set: Fixing the build. Created 3 years, 6 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 }
11 11
12 static_library("ntp_snippets") { 12 static_library("ntp_snippets") {
13 sources = [ 13 sources = [
14 "bookmarks/bookmark_last_visit_utils.cc", 14 "bookmarks/bookmark_last_visit_utils.cc",
15 "bookmarks/bookmark_last_visit_utils.h", 15 "bookmarks/bookmark_last_visit_utils.h",
16 "bookmarks/bookmark_suggestions_provider.cc", 16 "bookmarks/bookmark_suggestions_provider.cc",
17 "bookmarks/bookmark_suggestions_provider.h", 17 "bookmarks/bookmark_suggestions_provider.h",
18 "breaking_news/breaking_news_suggestions_provider.cc",
19 "breaking_news/breaking_news_suggestions_provider.h",
18 "breaking_news/content_suggestions_gcm_app_handler.cc", 20 "breaking_news/content_suggestions_gcm_app_handler.cc",
19 "breaking_news/content_suggestions_gcm_app_handler.h", 21 "breaking_news/content_suggestions_gcm_app_handler.h",
20 "breaking_news/subscription_json_request.cc", 22 "breaking_news/subscription_json_request.cc",
21 "breaking_news/subscription_json_request.h", 23 "breaking_news/subscription_json_request.h",
22 "breaking_news/subscription_manager.cc", 24 "breaking_news/subscription_manager.cc",
23 "breaking_news/subscription_manager.h", 25 "breaking_news/subscription_manager.h",
24 "callbacks.h", 26 "callbacks.h",
25 "category.cc", 27 "category.cc",
26 "category.h", 28 "category.h",
27 "category_info.cc", 29 "category_info.cc",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 227
226 deps = [ 228 deps = [
227 ":ntp_snippets", 229 ":ntp_snippets",
228 "//base", 230 "//base",
229 "//components/offline_pages/core", 231 "//components/offline_pages/core",
230 "//components/offline_pages/core:test_support", 232 "//components/offline_pages/core:test_support",
231 "//testing/gmock", 233 "//testing/gmock",
232 "//testing/gtest", 234 "//testing/gtest",
233 ] 235 ]
234 } 236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698