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

Side by Side Diff: components/dom_distiller.gypi

Issue 1248643004: Test distillability without JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@early
Patch Set: move tests, remove dbg msg Created 5 years, 2 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
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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/dom_distiller/content:content_common
9 'target_name': 'dom_distiller_content_common',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../ipc/ipc.gyp:ipc',
17 ],
18 'sources': [
19 'dom_distiller/content/common/distiller_messages.cc',
20 'dom_distiller/content/common/distiller_messages.h',
21 ],
22 },
23 {
8 # GN version: //components/dom_distiller/webui 24 # GN version: //components/dom_distiller/webui
9 'target_name': 'dom_distiller_webui', 25 'target_name': 'dom_distiller_webui',
10 'type': 'static_library', 26 'type': 'static_library',
11 'dependencies': [ 27 'dependencies': [
12 '../base/base.gyp:base', 28 '../base/base.gyp:base',
13 '../content/content.gyp:content_browser', 29 '../content/content.gyp:content_browser',
14 '../net/net.gyp:net', 30 '../net/net.gyp:net',
15 '../skia/skia.gyp:skia', 31 '../skia/skia.gyp:skia',
16 '../sync/sync.gyp:sync', 32 '../sync/sync.gyp:sync',
17 '../url/url.gyp:url_lib', 33 '../url/url.gyp:url_lib',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 }, 191 },
176 ], 192 ],
177 'conditions': [ 193 'conditions': [
178 ['OS != "ios"', { 194 ['OS != "ios"', {
179 'targets': [ 195 'targets': [
180 { 196 {
181 # GN version: //components/dom_distiller/content:content_browser 197 # GN version: //components/dom_distiller/content:content_browser
182 'target_name': 'dom_distiller_content_browser', 198 'target_name': 'dom_distiller_content_browser',
183 'type': 'static_library', 199 'type': 'static_library',
184 'dependencies': [ 200 'dependencies': [
201 'dom_distiller_content_common',
185 'dom_distiller_core', 202 'dom_distiller_core',
186 'dom_distiller_mojo_bindings', 203 'dom_distiller_mojo_bindings',
187 'dom_distiller_protos', 204 'dom_distiller_protos',
188 '../base/base.gyp:base', 205 '../base/base.gyp:base',
189 '../content/content.gyp:content_browser', 206 '../content/content.gyp:content_browser',
190 '../mojo/mojo_base.gyp:mojo_environment_chromium', 207 '../mojo/mojo_base.gyp:mojo_environment_chromium',
191 '../net/net.gyp:net', 208 '../net/net.gyp:net',
192 '../skia/skia.gyp:skia', 209 '../skia/skia.gyp:skia',
193 '../sync/sync.gyp:sync', 210 '../sync/sync.gyp:sync',
194 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 211 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
195 '../ui/gfx/gfx.gyp:gfx', 212 '../ui/gfx/gfx.gyp:gfx',
196 '../url/url.gyp:url_lib', 213 '../url/url.gyp:url_lib',
197 'components_resources.gyp:components_resources', 214 'components_resources.gyp:components_resources',
198 'components_strings.gyp:components_strings', 215 'components_strings.gyp:components_strings',
199 ], 216 ],
200 'include_dirs': [ 217 'include_dirs': [
201 '..', 218 '..',
202 ], 219 ],
203 'sources': [ 220 'sources': [
221 'dom_distiller/content/browser/distillability_driver.cc',
222 'dom_distiller/content/browser/distillability_driver.h',
204 'dom_distiller/content/browser/distillable_page_utils.cc', 223 'dom_distiller/content/browser/distillable_page_utils.cc',
205 'dom_distiller/content/browser/distillable_page_utils.h', 224 'dom_distiller/content/browser/distillable_page_utils.h',
206 'dom_distiller/content/browser/distillable_page_utils_android.cc', 225 'dom_distiller/content/browser/distillable_page_utils_android.cc',
207 'dom_distiller/content/browser/distillable_page_utils_android.h', 226 'dom_distiller/content/browser/distillable_page_utils_android.h',
208 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' , 227 'dom_distiller/content/browser/distiller_javascript_service_impl.cc' ,
209 'dom_distiller/content/browser/distiller_javascript_service_impl.h', 228 'dom_distiller/content/browser/distiller_javascript_service_impl.h',
210 'dom_distiller/content/browser/distiller_javascript_utils.cc', 229 'dom_distiller/content/browser/distiller_javascript_utils.cc',
211 'dom_distiller/content/browser/distiller_javascript_utils.h', 230 'dom_distiller/content/browser/distiller_javascript_utils.h',
212 'dom_distiller/content/browser/distiller_page_web_contents.cc', 231 'dom_distiller/content/browser/distiller_page_web_contents.cc',
213 'dom_distiller/content/browser/distiller_page_web_contents.h', 232 'dom_distiller/content/browser/distiller_page_web_contents.h',
(...skipping 10 matching lines...) Expand all
224 'dom_distiller_core_jni_headers', 243 'dom_distiller_core_jni_headers',
225 ], 244 ],
226 }], 245 }],
227 ], 246 ],
228 }, 247 },
229 { 248 {
230 # GN version: //components/dom_distiller/content:content_renderer 249 # GN version: //components/dom_distiller/content:content_renderer
231 'target_name': 'dom_distiller_content_renderer', 250 'target_name': 'dom_distiller_content_renderer',
232 'type': 'static_library', 251 'type': 'static_library',
233 'dependencies': [ 252 'dependencies': [
253 'dom_distiller_content_common',
234 'dom_distiller_mojo_bindings', 254 'dom_distiller_mojo_bindings',
235 '../base/base.gyp:base', 255 '../base/base.gyp:base',
236 '../content/content.gyp:content_browser', 256 '../content/content.gyp:content_browser',
237 '../gin/gin.gyp:gin', 257 '../gin/gin.gyp:gin',
238 '../mojo/mojo_base.gyp:mojo_environment_chromium', 258 '../mojo/mojo_base.gyp:mojo_environment_chromium',
239 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 259 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
240 ], 260 ],
241 'include_dirs': [ 261 'include_dirs': [
242 '..', 262 '..',
243 ], 263 ],
244 'sources': [ 264 'sources': [
265 'dom_distiller/content/renderer/distillability_agent.cc',
266 'dom_distiller/content/renderer/distillability_agent.h',
245 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c', 267 'dom_distiller/content/renderer/distiller_js_render_frame_observer.c c',
246 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ', 268 'dom_distiller/content/renderer/distiller_js_render_frame_observer.h ',
247 'dom_distiller/content/renderer/distiller_native_javascript.cc', 269 'dom_distiller/content/renderer/distiller_native_javascript.cc',
248 'dom_distiller/content/renderer/distiller_native_javascript.h', 270 'dom_distiller/content/renderer/distiller_native_javascript.h',
249 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc', 271 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .cc',
250 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h', 272 'dom_distiller/content/renderer/distiller_page_notifier_service_impl .h',
251 ], 273 ],
252 }, 274 },
253 275
254 ], 276 ],
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 'variables': { 371 'variables': {
350 'package_name': 'org/chromium/components/dom_distiller/core', 372 'package_name': 'org/chromium/components/dom_distiller/core',
351 'template_deps': ['dom_distiller/core/theme_list.h'], 373 'template_deps': ['dom_distiller/core/theme_list.h'],
352 }, 374 },
353 'includes': [ '../build/android/java_cpp_template.gypi' ], 375 'includes': [ '../build/android/java_cpp_template.gypi' ],
354 }, 376 },
355 ], 377 ],
356 }], 378 }],
357 ], 379 ],
358 } 380 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698