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

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

Issue 1958163002: [NTP Snippets] Refactor home-grown container API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoided auto as suggested. Created 4 years, 7 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/inner_iterator.h » ('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",
9 "ntp_snippet.cc", 8 "ntp_snippet.cc",
10 "ntp_snippet.h", 9 "ntp_snippet.h",
11 "ntp_snippets_fetcher.cc", 10 "ntp_snippets_fetcher.cc",
12 "ntp_snippets_fetcher.h", 11 "ntp_snippets_fetcher.h",
13 "ntp_snippets_scheduler.h", 12 "ntp_snippets_scheduler.h",
14 "ntp_snippets_service.cc", 13 "ntp_snippets_service.cc",
15 "ntp_snippets_service.h", 14 "ntp_snippets_service.h",
16 "pref_names.cc", 15 "pref_names.cc",
17 "pref_names.h", 16 "pref_names.h",
18 "switches.cc", 17 "switches.cc",
(...skipping 14 matching lines...) Expand all
33 deps = [ 32 deps = [
34 "//components/data_use_measurement/core", 33 "//components/data_use_measurement/core",
35 "//components/image_fetcher", 34 "//components/image_fetcher",
36 "//components/metrics", 35 "//components/metrics",
37 ] 36 ]
38 } 37 }
39 38
40 source_set("unit_tests") { 39 source_set("unit_tests") {
41 testonly = true 40 testonly = true
42 sources = [ 41 sources = [
43 "inner_iterator_unittest.cc",
44 "ntp_snippets_fetcher_unittest.cc", 42 "ntp_snippets_fetcher_unittest.cc",
45 "ntp_snippets_service_unittest.cc", 43 "ntp_snippets_service_unittest.cc",
46 ] 44 ]
47 45
48 deps = [ 46 deps = [
49 ":ntp_snippets", 47 ":ntp_snippets",
50 "//base", 48 "//base",
51 "//base/test:test_support", 49 "//base/test:test_support",
52 "//components/image_fetcher", 50 "//components/image_fetcher",
53 "//components/signin/core/browser:test_support", 51 "//components/signin/core/browser:test_support",
54 "//net:test_support", 52 "//net:test_support",
55 "//testing/gtest", 53 "//testing/gtest",
56 ] 54 ]
57 } 55 }
OLDNEW
« no previous file with comments | « components/ntp_snippets.gypi ('k') | components/ntp_snippets/inner_iterator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698