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/content_suggestions_gcm_app_handler.cc", |
| 19 "breaking_news/content_suggestions_gcm_app_handler.h", |
18 "breaking_news/subscription_json_request.cc", | 20 "breaking_news/subscription_json_request.cc", |
19 "breaking_news/subscription_json_request.h", | 21 "breaking_news/subscription_json_request.h", |
20 "breaking_news/subscription_manager.cc", | 22 "breaking_news/subscription_manager.cc", |
21 "breaking_news/subscription_manager.h", | 23 "breaking_news/subscription_manager.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", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "//net", | 102 "//net", |
101 "//ui/base", | 103 "//ui/base", |
102 "//url", | 104 "//url", |
103 ] | 105 ] |
104 | 106 |
105 deps = [ | 107 deps = [ |
106 "//components/bookmarks/browser", | 108 "//components/bookmarks/browser", |
107 "//components/data_use_measurement/core", | 109 "//components/data_use_measurement/core", |
108 "//components/favicon/core", | 110 "//components/favicon/core", |
109 "//components/favicon_base", | 111 "//components/favicon_base", |
| 112 "//components/gcm_driver", |
110 "//components/history/core/browser", | 113 "//components/history/core/browser", |
111 "//components/image_fetcher/core", | 114 "//components/image_fetcher/core", |
112 "//components/metrics", | 115 "//components/metrics", |
113 "//components/ntp_snippets/remote/proto", | 116 "//components/ntp_snippets/remote/proto", |
114 "//components/offline_pages/core", | 117 "//components/offline_pages/core", |
115 "//components/offline_pages/core/downloads:offline_pages_ui_adapter", | 118 "//components/offline_pages/core/downloads:offline_pages_ui_adapter", |
116 "//components/offline_pages/core/recent_tabs", | 119 "//components/offline_pages/core/recent_tabs", |
117 "//components/physical_web/data_source", | 120 "//components/physical_web/data_source", |
118 "//components/reading_list/core", | 121 "//components/reading_list/core", |
119 "//components/sessions", | 122 "//components/sessions", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 225 |
223 deps = [ | 226 deps = [ |
224 ":ntp_snippets", | 227 ":ntp_snippets", |
225 "//base", | 228 "//base", |
226 "//components/offline_pages/core", | 229 "//components/offline_pages/core", |
227 "//components/offline_pages/core:test_support", | 230 "//components/offline_pages/core:test_support", |
228 "//testing/gmock", | 231 "//testing/gmock", |
229 "//testing/gtest", | 232 "//testing/gtest", |
230 ] | 233 ] |
231 } | 234 } |
OLD | NEW |