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

Unified Diff: webkit/compositor/compositor.gyp

Issue 10918037: Implementation of WebCompositorSupport when use_libcc_for_compositor=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: webkit/compositor/compositor.gyp
diff --git a/webkit/compositor/compositor.gyp b/webkit/compositor/compositor.gyp
index 3f71c1fdd8033ce8a156c4f099d88f2c2eda60b1..cc648c46c097a18de2f776749da813675dc3285e 100644
--- a/webkit/compositor/compositor.gyp
+++ b/webkit/compositor/compositor.gyp
@@ -45,6 +45,35 @@
'WheelFlingPlatformGestureCurve.h',
],
},
+ 'targets': [
+ {
+ 'target_name': 'webkit_compositor_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../skia/skia.gyp:skia',
+ '../../third_party/WebKit/Source/Platform/Platform.gyp/Platform.gyp:webkit_platform',
+ ],
+ 'sources': [
+ 'web_compositor_support_impl.cc',
+ 'web_compositor_support_impl.h',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ 'conditions': [
+ ['use_libcc_for_compositor==1', {
+ 'include_dirs': [
+ '../../cc',
+ '../../cc/stubs',
+ ],
+ 'dependencies': [
+ 'webkit_compositor',
+ '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf',
+ ],
+ }],
+ ],
+ },
+ ],
'conditions': [
['use_libcc_for_compositor==1', {
'targets': [
@@ -73,7 +102,7 @@
'stubs/AnimationIdVendor.h',
'stubs/public/WebTransformationMatrix',
],
- }
+ },
],
}],
],
« no previous file with comments | « no previous file | webkit/compositor/web_compositor_support_impl.h » ('j') | webkit/compositor/web_compositor_support_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698