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

Unified Diff: cc/cc.gyp

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix clang Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/TreeSynchronizer.cpp ('k') | cc/compositor_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/cc.gyp
diff --git a/cc/cc.gyp b/cc/cc.gyp
index fcc30d9d4f0a0ac5603eb27a382314840dd0db49..213b1af659a818ce82c2b5b2ccaebfba955c18ed 100644
--- a/cc/cc.gyp
+++ b/cc/cc.gyp
@@ -7,10 +7,14 @@
'chromium_code': 0,
'use_libcc_for_compositor%': 0,
'cc_source_files': [
+ 'compositor_frame.h',
+ 'compositor_frame.cc',
'hash_pair.h',
'own_ptr_vector.h',
'scoped_ptr_hash_map.h',
'scoped_ptr_vector.h',
+ 'transferable_resource.h',
+ 'transferable_resource.cc',
'BitmapCanvasLayerTextureUpdater.cpp',
'BitmapCanvasLayerTextureUpdater.h',
'BitmapSkPictureCanvasLayerTextureUpdater.cpp',
@@ -36,6 +40,8 @@
'CCDelayBasedTimeSource.h',
'CCDelegatedRendererLayerImpl.cpp',
'CCDelegatedRendererLayerImpl.h',
+ 'CCDelegatingRenderer.cpp',
+ 'CCDelegatingRenderer.h',
'CCDirectRenderer.cpp',
'CCDirectRenderer.h',
'CCDrawQuad.cpp',
@@ -280,5 +286,36 @@
}],
],
},
+ {
+ 'target_name': 'cc_ipc',
+ 'type': 'static_library',
+ 'includes': [
+ 'cc.gypi',
+ ],
+ 'conditions': [
+ ['use_libcc_for_compositor==1', {
+ 'dependencies': [
+ 'cc',
+ '<(DEPTH)/ipc/ipc.gyp:ipc',
+ '<(DEPTH)/skia/skia.gyp:skia',
+ '<(DEPTH)/ui/ui.gyp:ui',
+ '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf',
+ ],
+ 'defines': [
+ 'WTF_USE_ACCELERATED_COMPOSITING=1',
+ ],
+ 'include_dirs': [
+ '<(webkit_src_dir)/Source/Platform/chromium',
+ '<@(cc_stubs_dirs)',
+ ],
+ 'sources': [
+ 'ipc/cc_param_traits.h',
+ 'ipc/cc_param_traits.cc',
+ 'ipc/cc_render_pass_traits.h',
+ 'ipc/cc_render_pass_traits.cc',
+ ],
+ }],
+ ],
+ },
],
}
« no previous file with comments | « cc/TreeSynchronizer.cpp ('k') | cc/compositor_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698