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

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

Issue 2139293004: [TEMP - DO NOT SUBMIT] OfflinePagesProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internalspage
Patch Set: Implement OfflinePage conversion Created 4 years, 5 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni")
8 }
9
10 # GYP: //components/ntp_snippets.gypi:offline_page_suggestions
11 static_library("offline_page_suggestions") {
12 sources = [
13 "offline_page_suggestions_provider.cc",
14 "offline_page_suggestions_provider.h",
15 ]
16
17 deps = [
18 "//base",
19 "//components/keyed_service/core",
20 "//components/ntp_snippets:ntp_snippets",
21 "//components/offline_pages:offline_pages",
22 ]
23 }
24
25 source_set("unit_tests") {
26 testonly = true
27 sources = []
28
29 deps = [
30 ":offline_page_suggestions",
31 "//base",
32 "//base/test:test_support",
33 "//components/ntp_snippets:ntp_snippets",
34 "//components/offline_pages:offline_pages",
35 "//testing/gtest",
36 ]
37 }
OLDNEW
« no previous file with comments | « components/ntp_snippets/content_suggestions_category.h ('k') | components/ntp_snippets/offline_pages/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698