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

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

Issue 1677073002: Fetch snippets from ChromeReader and show them on the NTP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 4 years, 10 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
« no previous file with comments | « components/ntp_snippets.gypi ('k') | components/ntp_snippets/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP version: components/ntp_snippets.gypi:ntp_snippets 5 # GYP version: components/ntp_snippets.gypi:ntp_snippets
6 source_set("ntp_snippets") { 6 source_set("ntp_snippets") {
7 sources = [ 7 sources = [
8 "inner_iterator.h", 8 "inner_iterator.h",
9 "ntp_snippet.cc", 9 "ntp_snippet.cc",
10 "ntp_snippet.h", 10 "ntp_snippet.h",
11 "ntp_snippets_fetcher.cc",
12 "ntp_snippets_fetcher.h",
11 "ntp_snippets_service.cc", 13 "ntp_snippets_service.cc",
12 "ntp_snippets_service.h", 14 "ntp_snippets_service.h",
13 ] 15 ]
14 16
15 public_deps = [ 17 public_deps = [
16 "//base", 18 "//base",
17 "//components/keyed_service/core", 19 "//components/keyed_service/core",
20 "//components/signin/core/browser",
21 "//google_apis",
22 "//net",
18 "//url", 23 "//url",
19 ] 24 ]
20 } 25 }
21 26
22 source_set("unit_tests") { 27 source_set("unit_tests") {
23 testonly = true 28 testonly = true
24 sources = [ 29 sources = [
25 "inner_iterator_unittest.cc", 30 "inner_iterator_unittest.cc",
26 "ntp_snippets_service_unittest.cc", 31 "ntp_snippets_service_unittest.cc",
27 ] 32 ]
28 33
29 deps = [ 34 deps = [
30 ":ntp_snippets", 35 ":ntp_snippets",
36 "//base",
37 "//components/signin/core/browser:test_support",
38 "//net:test_support",
31 "//testing/gtest", 39 "//testing/gtest",
32 ] 40 ]
33 } 41 }
OLDNEW
« no previous file with comments | « components/ntp_snippets.gypi ('k') | components/ntp_snippets/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698