summaryrefslogtreecommitdiff
path: root/chromium/components/ntp_snippets/BUILD.gn
blob: 88f8092c998d71bfeb8ed67482b2d25446d589a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/ui.gni")

import("//third_party/protobuf/proto_library.gni")

if (is_android) {
  import("//build/config/android/config.gni")
  import("//build/config/android/rules.gni")
}

static_library("ntp_snippets") {
  sources = [
    "bookmarks/bookmark_last_visit_utils.cc",
    "bookmarks/bookmark_last_visit_utils.h",
    "bookmarks/bookmark_suggestions_provider.cc",
    "bookmarks/bookmark_suggestions_provider.h",
    "breaking_news/breaking_news_listener.h",
    "breaking_news/breaking_news_metrics.cc",
    "breaking_news/breaking_news_metrics.h",
    "breaking_news/subscription_json_request.cc",
    "breaking_news/subscription_json_request.h",
    "breaking_news/subscription_manager.cc",
    "breaking_news/subscription_manager.h",
    "breaking_news/subscription_manager_impl.cc",
    "breaking_news/subscription_manager_impl.h",
    "callbacks.h",
    "category.cc",
    "category.h",
    "category_info.cc",
    "category_info.h",
    "category_rankers/category_ranker.h",
    "category_rankers/click_based_category_ranker.cc",
    "category_rankers/click_based_category_ranker.h",
    "category_rankers/constant_category_ranker.cc",
    "category_rankers/constant_category_ranker.h",
    "category_status.cc",
    "category_status.h",
    "content_suggestion.cc",
    "content_suggestion.h",
    "content_suggestions_metrics.cc",
    "content_suggestions_metrics.h",
    "content_suggestions_provider.cc",
    "content_suggestions_provider.h",
    "content_suggestions_service.cc",
    "content_suggestions_service.h",
    "contextual/cluster.cc",
    "contextual/cluster.h",
    "contextual/contextual_content_suggestions_service.cc",
    "contextual/contextual_content_suggestions_service.h",
    "contextual/contextual_content_suggestions_service_proxy.cc",
    "contextual/contextual_content_suggestions_service_proxy.h",
    "contextual/contextual_suggestion.cc",
    "contextual/contextual_suggestion.h",
    "contextual/contextual_suggestions_fetch.cc",
    "contextual/contextual_suggestions_fetch.h",
    "contextual/contextual_suggestions_fetcher.h",
    "contextual/contextual_suggestions_fetcher_impl.cc",
    "contextual/contextual_suggestions_fetcher_impl.h",
    "contextual/contextual_suggestions_metrics_reporter.cc",
    "contextual/contextual_suggestions_metrics_reporter.h",
    "contextual/contextual_suggestions_ukm_entry.cc",
    "contextual/contextual_suggestions_ukm_entry.h",
    "features.cc",
    "features.h",
    "logger.cc",
    "logger.h",
    "ntp_snippets_constants.cc",
    "ntp_snippets_constants.h",
    "offline_pages/recent_tab_suggestions_provider.cc",
    "offline_pages/recent_tab_suggestions_provider.h",
    "physical_web_pages/physical_web_page_suggestions_provider.cc",
    "physical_web_pages/physical_web_page_suggestions_provider.h",
    "pref_names.cc",
    "pref_names.h",
    "pref_util.cc",
    "pref_util.h",
    "reading_list/reading_list_suggestions_provider.cc",
    "reading_list/reading_list_suggestions_provider.h",
    "remote/cached_image_fetcher.cc",
    "remote/cached_image_fetcher.h",
    "remote/json_request.cc",
    "remote/json_request.h",
    "remote/json_to_categories.cc",
    "remote/json_to_categories.h",
    "remote/persistent_scheduler.h",
    "remote/prefetched_pages_tracker.h",
    "remote/prefetched_pages_tracker_impl.cc",
    "remote/prefetched_pages_tracker_impl.h",
    "remote/remote_suggestion.cc",
    "remote/remote_suggestion.h",
    "remote/remote_suggestions_database.cc",
    "remote/remote_suggestions_database.h",
    "remote/remote_suggestions_fetcher.cc",
    "remote/remote_suggestions_fetcher.h",
    "remote/remote_suggestions_fetcher_impl.cc",
    "remote/remote_suggestions_fetcher_impl.h",
    "remote/remote_suggestions_provider.cc",
    "remote/remote_suggestions_provider.h",
    "remote/remote_suggestions_provider_impl.cc",
    "remote/remote_suggestions_provider_impl.h",
    "remote/remote_suggestions_scheduler.h",
    "remote/remote_suggestions_scheduler_impl.cc",
    "remote/remote_suggestions_scheduler_impl.h",
    "remote/remote_suggestions_status_service.h",
    "remote/remote_suggestions_status_service_impl.cc",
    "remote/remote_suggestions_status_service_impl.h",
    "remote/request_params.cc",
    "remote/request_params.h",
    "remote/request_throttler.cc",
    "remote/request_throttler.h",
    "sessions/foreign_sessions_suggestions_provider.cc",
    "sessions/foreign_sessions_suggestions_provider.h",
    "sessions/tab_delegate_sync_adapter.cc",
    "sessions/tab_delegate_sync_adapter.h",
    "status.cc",
    "status.h",
    "switches.cc",
    "switches.h",
    "time_serialization.cc",
    "time_serialization.h",
    "user_classifier.cc",
    "user_classifier.h",
  ]

  if (is_android) {
    sources += [
      "breaking_news/breaking_news_gcm_app_handler.cc",
      "breaking_news/breaking_news_gcm_app_handler.h",
    ]
  }

  public_deps = [
    "//base",
    "//components/keyed_service/core",
    "//components/leveldb_proto",
    "//components/prefs",
    "//components/resources",
    "//components/sync",
    "//components/version_info",
    "//net",
    "//ui/base",
    "//url",
  ]

  deps = [
    ":explore_protos",
    "//components/bookmarks/browser",
    "//components/data_use_measurement/core",
    "//components/favicon/core",
    "//components/favicon_base",
    "//components/gcm_driver",
    "//components/history/core/browser",
    "//components/image_fetcher/core",
    "//components/language/core/browser",
    "//components/metrics",
    "//components/ntp_snippets/remote/proto",
    "//components/offline_pages/core",
    "//components/offline_pages/core/downloads:offline_pages_ui_adapter",
    "//components/offline_pages/core/recent_tabs",
    "//components/physical_web/data_source",
    "//components/reading_list/core",
    "//components/sessions",
    "//components/strings",
    "//components/sync_sessions",

    #    "//components/ukm/content",
    "//components/url_formatter",
    "//components/variations",
    "//components/variations/net",
    "//components/variations/service",
    "//components/web_resource",
    "//services/identity/public/cpp",
    "//services/metrics/public/cpp:metrics_cpp",
    "//services/network/public/cpp",
    "//services/network/public/mojom",
    "//third_party/icu/",
    "//third_party/protobuf:protobuf_lite",
    "//ui/gfx",
  ]
}

if (is_android) {
  java_cpp_enum("ntp_snippets_java_enums_srcjar") {
    sources = [
      "category.h",
      "category_info.h",
      "category_status.h",
      "content_suggestions_service.cc",
      "contextual/contextual_suggestions_metrics_reporter.h",
    ]
  }
}

proto_library("explore_protos") {
  sources = [
    "contextual/proto/chrome_search_api_request_context.proto",
    "contextual/proto/get_pivots_request.proto",
    "contextual/proto/get_pivots_response.proto",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "bookmarks/bookmark_last_visit_utils_unittest.cc",
    "bookmarks/bookmark_suggestions_provider_unittest.cc",
    "breaking_news/subscription_json_request_unittest.cc",
    "breaking_news/subscription_manager_impl_unittest.cc",
    "category_rankers/click_based_category_ranker_unittest.cc",
    "category_rankers/constant_category_ranker_unittest.cc",
    "category_unittest.cc",
    "content_suggestions_metrics_unittest.cc",
    "content_suggestions_service_unittest.cc",
    "contextual/contextual_content_suggestions_service_proxy_unittest.cc",
    "contextual/contextual_content_suggestions_service_unittest.cc",
    "contextual/contextual_suggestions_fetcher_impl_unittest.cc",
    "contextual/contextual_suggestions_metrics_reporter_unittest.cc",
    "contextual/contextual_suggestions_ukm_entry_unittest.cc",
    "logger_unittest.cc",
    "offline_pages/recent_tab_suggestions_provider_unittest.cc",
    "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc",
    "reading_list/reading_list_suggestions_provider_unittest.cc",
    "remote/cached_image_fetcher_unittest.cc",
    "remote/json_request_unittest.cc",
    "remote/prefetched_pages_tracker_impl_unittest.cc",
    "remote/remote_suggestion_unittest.cc",
    "remote/remote_suggestions_database_unittest.cc",
    "remote/remote_suggestions_fetcher_impl_unittest.cc",
    "remote/remote_suggestions_provider_impl_unittest.cc",
    "remote/remote_suggestions_scheduler_impl_unittest.cc",
    "remote/remote_suggestions_status_service_impl_unittest.cc",
    "remote/request_throttler_unittest.cc",
    "remote/test_utils.cc",
    "remote/test_utils.h",
    "sessions/foreign_sessions_suggestions_provider_unittest.cc",
    "sessions/tab_delegate_sync_adapter_unittest.cc",
    "time_serialization_unittest.cc",
    "user_classifier_unittest.cc",
  ]

  if (is_android) {
    sources += [ "breaking_news/breaking_news_gcm_app_handler_unittest.cc" ]
  }

  deps = [
    ":explore_protos",
    ":ntp_snippets",
    ":test_support",
    "//base",
    "//base/test:test_support",
    "//components/bookmarks/browser",
    "//components/bookmarks/test",
    "//components/gcm_driver",
    "//components/gcm_driver/instance_id",
    "//components/image_fetcher/core",
    "//components/image_fetcher/core:test_support",
    "//components/leveldb_proto:test_support",
    "//components/ntp_snippets/remote/proto",
    "//components/offline_pages/core",
    "//components/offline_pages/core:test_support",
    "//components/offline_pages/core/background:test_support",
    "//components/offline_pages/core/downloads:offline_pages_ui_adapter",
    "//components/offline_pages/core/recent_tabs",
    "//components/physical_web/data_source:test_support",
    "//components/prefs:test_support",
    "//components/reading_list/core",
    "//components/sessions",
    "//components/sessions:test_support",
    "//components/strings",
    "//components/sync:test_support_driver",
    "//components/sync_preferences:test_support",
    "//components/sync_sessions",
    "//components/ukm:test_support",
    "//components/variations:test_support",
    "//components/web_resource:web_resource",
    "//google_apis/gcm",
    "//net:test_support",
    "//services/identity/public/cpp",
    "//services/identity/public/cpp:test_support",
    "//services/network:test_support",
    "//services/network/public/cpp",
    "//services/network/public/mojom",
    "//testing/gtest",
    "//third_party/icu/",
    "//ui/gfx:test_support",
  ]
}

source_set("test_support") {
  testonly = true
  sources = [
    "category_rankers/fake_category_ranker.cc",
    "category_rankers/fake_category_ranker.h",
    "category_rankers/mock_category_ranker.cc",
    "category_rankers/mock_category_ranker.h",
    "fake_content_suggestions_provider_observer.cc",
    "fake_content_suggestions_provider_observer.h",
    "mock_content_suggestions_provider.cc",
    "mock_content_suggestions_provider.h",
    "mock_content_suggestions_provider_observer.cc",
    "mock_content_suggestions_provider_observer.h",
    "offline_pages/offline_pages_test_utils.cc",
    "offline_pages/offline_pages_test_utils.h",
    "remote/remote_suggestion_builder.cc",
    "remote/remote_suggestion_builder.h",
  ]

  deps = [
    ":ntp_snippets",
    "//base",
    "//components/ntp_snippets/remote/proto",
    "//components/offline_pages/core",
    "//components/offline_pages/core:test_support",
    "//testing/gmock",
    "//testing/gtest",
  ]
}