OLD | NEW |
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_subscription_manager.cc", | 18 "breaking_news/breaking_news_subscription_manager.cc", |
19 "breaking_news/breaking_news_subscription_manager.h", | 19 "breaking_news/breaking_news_subscription_manager.h", |
| 20 "breaking_news/content_suggestions_gcm_app_handler.cc", |
| 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 "callbacks.h", | 24 "callbacks.h", |
23 "category.cc", | 25 "category.cc", |
24 "category.h", | 26 "category.h", |
25 "category_info.cc", | 27 "category_info.cc", |
26 "category_info.h", | 28 "category_info.h", |
27 "category_rankers/category_ranker.h", | 29 "category_rankers/category_ranker.h", |
28 "category_rankers/click_based_category_ranker.cc", | 30 "category_rankers/click_based_category_ranker.cc", |
29 "category_rankers/click_based_category_ranker.h", | 31 "category_rankers/click_based_category_ranker.h", |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 223 |
222 deps = [ | 224 deps = [ |
223 ":ntp_snippets", | 225 ":ntp_snippets", |
224 "//base", | 226 "//base", |
225 "//components/offline_pages/core", | 227 "//components/offline_pages/core", |
226 "//components/offline_pages/core:test_support", | 228 "//components/offline_pages/core:test_support", |
227 "//testing/gmock", | 229 "//testing/gmock", |
228 "//testing/gtest", | 230 "//testing/gtest", |
229 ] | 231 ] |
230 } | 232 } |
OLD | NEW |