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

Side by Side Diff: components/ntp_snippets.gypi

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
« no previous file with comments | « components/BUILD.gn ('k') | components/ntp_snippets/content_suggestions_category.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/ntp_snippets 8 # GN version: //components/ntp_snippets
9 'target_name': 'ntp_snippets', 9 'target_name': 'ntp_snippets',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'ntp_snippets/proto/ntp_snippets.proto', 55 'ntp_snippets/proto/ntp_snippets.proto',
56 'ntp_snippets/switches.cc', 56 'ntp_snippets/switches.cc',
57 'ntp_snippets/switches.h', 57 'ntp_snippets/switches.h',
58 ], 58 ],
59 'variables': { 59 'variables': {
60 'proto_in_dir': 'ntp_snippets/proto', 60 'proto_in_dir': 'ntp_snippets/proto',
61 'proto_out_dir': 'components/ntp_snippets/proto', 61 'proto_out_dir': 'components/ntp_snippets/proto',
62 }, 62 },
63 'includes': [ '../build/protoc.gypi' ], 63 'includes': [ '../build/protoc.gypi' ],
64 }, 64 },
65 {
66 # GN: //components/ntp_snippets/offline_pages:offline_page_suggestions
67 'target_name': 'ntp_snippets_offline_page_suggestions',
68 'type': 'static_library',
69 'include_dirs': [
70 '..',
71 '../..',
72 ],
73 'dependencies': [
74 '../base/base.gyp:base',
75 'keyed_service_core',
76 'ntp_snippets',
77 'offline_pages',
78 ],
79 'sources': [
80 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc',
81 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h',
82 ],
83 },
65 ], 84 ],
66 } 85 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/ntp_snippets/content_suggestions_category.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698