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

Side by Side Diff: components/dom_distiller.gypi

Issue 266073003: Add support for distilling current WebContents (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed all comments and added tests. Also removed the timeout for the view request delegate. Created 6 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 | 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'dom_distiller_core', 148 'dom_distiller_core',
149 ], 149 ],
150 'include_dirs': [ 150 'include_dirs': [
151 '..', 151 '..',
152 ], 152 ],
153 'sources': [ 153 'sources': [
154 'dom_distiller/content/distiller_page_web_contents.cc', 154 'dom_distiller/content/distiller_page_web_contents.cc',
155 'dom_distiller/content/distiller_page_web_contents.h', 155 'dom_distiller/content/distiller_page_web_contents.h',
156 'dom_distiller/content/dom_distiller_viewer_source.cc', 156 'dom_distiller/content/dom_distiller_viewer_source.cc',
157 'dom_distiller/content/dom_distiller_viewer_source.h', 157 'dom_distiller/content/dom_distiller_viewer_source.h',
158 'dom_distiller/content/web_contents_main_frame_observer.cc',
159 'dom_distiller/content/web_contents_main_frame_observer.h',
158 ], 160 ],
159 }, 161 },
160 ], 162 ],
161 }], 163 }],
162 ['OS=="android"', { 164 ['OS=="android"', {
163 'targets': [ 165 'targets': [
164 { 166 {
165 'target_name': 'dom_distiller_core_java', 167 'target_name': 'dom_distiller_core_java',
166 'type': 'none', 168 'type': 'none',
167 'dependencies': [ 169 'dependencies': [
(...skipping 14 matching lines...) Expand all
182 'jni_gen_package': 'dom_distiller_core', 184 'jni_gen_package': 'dom_distiller_core',
183 }, 185 },
184 'includes': [ '../build/jni_generator.gypi' ], 186 'includes': [ '../build/jni_generator.gypi' ],
185 }, 187 },
186 ], 188 ],
187 }], 189 }],
188 ], 190 ],
189 }], 191 }],
190 ], 192 ],
191 } 193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698