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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller.gypi
diff --git a/components/dom_distiller.gypi b/components/dom_distiller.gypi
index 8d3165596f1ca5a344d45e7724d314ead8cbc6e3..e06e8c9f3945d3b986aa936b81329552378f1869 100644
--- a/components/dom_distiller.gypi
+++ b/components/dom_distiller.gypi
@@ -5,6 +5,22 @@
{
'targets': [
{
+ # GN version: //components/dom_distiller/content:content_common
+ 'target_name': 'dom_distiller_content_common',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../ipc/ipc.gyp:ipc',
+ ],
+ 'sources': [
+ 'dom_distiller/content/common/distiller_messages.cc',
+ 'dom_distiller/content/common/distiller_messages.h',
+ ],
+ },
+ {
# GN version: //components/dom_distiller/webui
'target_name': 'dom_distiller_webui',
'type': 'static_library',
@@ -182,6 +198,7 @@
'target_name': 'dom_distiller_content_browser',
'type': 'static_library',
'dependencies': [
+ 'dom_distiller_content_common',
'dom_distiller_core',
'dom_distiller_mojo_bindings',
'dom_distiller_protos',
@@ -201,6 +218,8 @@
'..',
],
'sources': [
+ 'dom_distiller/content/browser/distillability_driver.cc',
+ 'dom_distiller/content/browser/distillability_driver.h',
'dom_distiller/content/browser/distillable_page_utils.cc',
'dom_distiller/content/browser/distillable_page_utils.h',
'dom_distiller/content/browser/distillable_page_utils_android.cc',
@@ -231,6 +250,7 @@
'target_name': 'dom_distiller_content_renderer',
'type': 'static_library',
'dependencies': [
+ 'dom_distiller_content_common',
'dom_distiller_mojo_bindings',
'../base/base.gyp:base',
'../content/content.gyp:content_browser',
@@ -242,6 +262,8 @@
'..',
],
'sources': [
+ 'dom_distiller/content/renderer/distillability_agent.cc',
+ 'dom_distiller/content/renderer/distillability_agent.h',
'dom_distiller/content/renderer/distiller_js_render_frame_observer.cc',
'dom_distiller/content/renderer/distiller_js_render_frame_observer.h',
'dom_distiller/content/renderer/distiller_native_javascript.cc',

Powered by Google App Engine
This is Rietveld 408576698