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

Side by Side Diff: components/dom_distiller.gypi

Issue 134873008: Add support for displaying distilled articles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'conditions': [ 6 'conditions': [
7 ['android_webview_build == 0', { 7 ['android_webview_build == 0', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'dom_distiller_webui', 10 'target_name': 'dom_distiller_webui',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'includes': [ '../build/protoc.gypi' ] 101 'includes': [ '../build/protoc.gypi' ]
102 }, 102 },
103 ], 103 ],
104 'conditions': [ 104 'conditions': [
105 ['OS != "ios"', { 105 ['OS != "ios"', {
106 'targets': [ 106 'targets': [
107 { 107 {
108 'target_name': 'dom_distiller_content', 108 'target_name': 'dom_distiller_content',
109 'type': 'static_library', 109 'type': 'static_library',
110 'dependencies': [ 110 'dependencies': [
111 'component_strings.gyp:component_strings',
111 'dom_distiller_core', 112 'dom_distiller_core',
113 'dom_distiller_resources',
112 '../skia/skia.gyp:skia', 114 '../skia/skia.gyp:skia',
113 '../sync/sync.gyp:sync', 115 '../sync/sync.gyp:sync',
114 ], 116 ],
115 'include_dirs': [ 117 'include_dirs': [
116 '..', 118 '..',
117 ], 119 ],
118 'sources': [ 120 'sources': [
119 'dom_distiller/content/distiller_page_web_contents.cc', 121 'dom_distiller/content/distiller_page_web_contents.cc',
120 'dom_distiller/content/distiller_page_web_contents.h', 122 'dom_distiller/content/distiller_page_web_contents.h',
121 'dom_distiller/content/dom_distiller_viewer_source.cc', 123 'dom_distiller/content/dom_distiller_viewer_source.cc',
122 'dom_distiller/content/dom_distiller_viewer_source.h', 124 'dom_distiller/content/dom_distiller_viewer_source.h',
123 ], 125 ],
124 }, 126 },
125 ], 127 ],
126 }], 128 }],
127 ], 129 ],
128 }], 130 }],
129 ], 131 ],
130 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698