Chromium Code Reviews| Index: components/dom_distiller.gypi |
| diff --git a/components/dom_distiller.gypi b/components/dom_distiller.gypi |
| index 589080765f5137c248570ae44dc292f4506e8ee2..6d8fba7103c3402a74a22ede40e5b24820625d86 100644 |
| --- a/components/dom_distiller.gypi |
| +++ b/components/dom_distiller.gypi |
| @@ -161,6 +161,18 @@ |
| }, |
| 'includes': [ '../build/protoc.gypi' ] |
| }, |
| + { |
| + # GN version: //components/dom_distiller/content:mojo_bindings |
| + 'target_name': 'dom_distiller_mojo_bindings', |
| + 'type': 'static_library', |
| + 'sources': [ |
| + 'dom_distiller/content/common/distiller_javascript_service.mojom', |
| + 'dom_distiller/content/common/distiller_page_notifier_service.mojom', |
| + ], |
| + 'includes': [ |
| + '../third_party/mojo/mojom_bindings_generator.gypi', |
| + ], |
| + }, |
| ], |
| 'conditions': [ |
| ['OS != "ios"', { |
| @@ -172,14 +184,17 @@ |
| 'dependencies': [ |
| '../base/base.gyp:base', |
| '../content/content.gyp:content_browser', |
| + '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| '../net/net.gyp:net', |
| '../skia/skia.gyp:skia', |
| '../sync/sync.gyp:sync', |
| + '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| '../ui/gfx/gfx.gyp:gfx', |
| '../url/url.gyp:url_lib', |
| 'components_resources.gyp:components_resources', |
| 'components_strings.gyp:components_strings', |
| 'dom_distiller_core', |
|
nyquist
2015/08/19 10:59:54
Local deps first, then lexicographical sort.
mdjones
2015/08/19 20:25:19
Done.
|
| + 'dom_distiller_mojo_bindings', |
| 'dom_distiller_protos', |
| ], |
| 'include_dirs': [ |
| @@ -190,6 +205,8 @@ |
| 'dom_distiller/content/browser/distillable_page_utils.h', |
| 'dom_distiller/content/browser/distillable_page_utils_android.cc', |
| 'dom_distiller/content/browser/distillable_page_utils_android.h', |
| + 'dom_distiller/content/browser/distiller_javascript_service_impl.cc', |
| + 'dom_distiller/content/browser/distiller_javascript_service_impl.h', |
| 'dom_distiller/content/browser/distiller_javascript_utils.cc', |
| 'dom_distiller/content/browser/distiller_javascript_utils.h', |
| 'dom_distiller/content/browser/distiller_page_web_contents.cc', |
| @@ -209,6 +226,31 @@ |
| }], |
| ], |
| }, |
| + { |
| + # GN version: //components/dom_distiller/content:content_renderer |
| + 'target_name': 'dom_distiller_content_renderer', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../content/content.gyp:content_browser', |
|
nyquist
2015/08/19 10:59:54
Lexicographical sort
mdjones
2015/08/19 20:25:19
Done.
|
| + '../base/base.gyp:base', |
| + '../gin/gin.gyp:gin', |
| + '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| + '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| + 'dom_distiller_mojo_bindings', |
|
nyquist
2015/08/19 10:59:54
Local deps first.
mdjones
2015/08/19 20:25:19
Done.
|
| + ], |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'sources': [ |
| + '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', |
| + 'dom_distiller/content/renderer/distiller_native_javascript.h', |
| + 'dom_distiller/content/renderer/distiller_page_notifier_service_impl.cc', |
| + 'dom_distiller/content/renderer/distiller_page_notifier_service_impl.h', |
| + ], |
| + }, |
| + |
| ], |
| }], |
| ['OS=="ios"', { |