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

Unified Diff: webkit/compositor_bindings/compositor_bindings.gyp

Issue 11617016: Componentize webkit/compositor_bindings target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add ui dep to cc_test_support Created 8 years 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
« no previous file with comments | « content/content_browser.gypi ('k') | webkit/compositor_bindings/web_animation_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/compositor_bindings.gyp
diff --git a/webkit/compositor_bindings/compositor_bindings.gyp b/webkit/compositor_bindings/compositor_bindings.gyp
index e9fae16d2610b71934249b4c5c82e07610d92bb4..48124a3d6e513b03d2740a437be5f6442507eb36 100644
--- a/webkit/compositor_bindings/compositor_bindings.gyp
+++ b/webkit/compositor_bindings/compositor_bindings.gyp
@@ -17,8 +17,6 @@
'web_compositor_support_software_output_device.h',
'web_content_layer_impl.cc',
'web_content_layer_impl.h',
- 'web_delegated_renderer_layer_impl.cc',
- 'web_delegated_renderer_layer_impl.h',
'web_external_texture_layer_impl.cc',
'web_external_texture_layer_impl.h',
'web_float_animation_curve_impl.cc',
@@ -46,6 +44,13 @@
'web_transform_animation_curve_impl.cc',
'web_transform_animation_curve_impl.h',
],
+ 'conditions': [
+ ['inside_chromium_build==0', {
+ 'webkit_src_dir': '../../../../..',
+ },{
+ 'webkit_src_dir': '../../third_party/WebKit',
+ }],
+ ],
},
'targets': [
{
@@ -53,6 +58,7 @@
'type': 'static_library',
'dependencies': [
'../../skia/skia.gyp:skia',
+ '../../cc/cc.gyp:cc',
'webkit_compositor_bindings',
],
'sources': [
@@ -66,16 +72,20 @@
},
{
'target_name': 'webkit_compositor_bindings',
- 'type': 'static_library',
+ 'type': '<(component)',
'dependencies': [
'../../base/base.gyp:base',
'../../cc/cc.gyp:cc',
'../../skia/skia.gyp:skia',
'../../ui/ui.gyp:ui',
+ '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
],
'sources': [
'<@(webkit_compositor_bindings_sources)',
],
+ 'defines': [
+ 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1'
+ ]
},
],
}
« no previous file with comments | « content/content_browser.gypi ('k') | webkit/compositor_bindings/web_animation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698