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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/TreeSynchronizer.cpp ('k') | cc/compositor_frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 0, 7 'chromium_code': 0,
8 'use_libcc_for_compositor%': 0, 8 'use_libcc_for_compositor%': 0,
9 'cc_source_files': [ 9 'cc_source_files': [
10 'compositor_frame.h',
11 'compositor_frame.cc',
10 'hash_pair.h', 12 'hash_pair.h',
11 'own_ptr_vector.h', 13 'own_ptr_vector.h',
12 'scoped_ptr_hash_map.h', 14 'scoped_ptr_hash_map.h',
13 'scoped_ptr_vector.h', 15 'scoped_ptr_vector.h',
16 'transferable_resource.h',
17 'transferable_resource.cc',
14 'BitmapCanvasLayerTextureUpdater.cpp', 18 'BitmapCanvasLayerTextureUpdater.cpp',
15 'BitmapCanvasLayerTextureUpdater.h', 19 'BitmapCanvasLayerTextureUpdater.h',
16 'BitmapSkPictureCanvasLayerTextureUpdater.cpp', 20 'BitmapSkPictureCanvasLayerTextureUpdater.cpp',
17 'BitmapSkPictureCanvasLayerTextureUpdater.h', 21 'BitmapSkPictureCanvasLayerTextureUpdater.h',
18 'caching_bitmap_canvas_layer_texture_updater.cc', 22 'caching_bitmap_canvas_layer_texture_updater.cc',
19 'caching_bitmap_canvas_layer_texture_updater.h', 23 'caching_bitmap_canvas_layer_texture_updater.h',
20 'CCActiveAnimation.cpp', 24 'CCActiveAnimation.cpp',
21 'CCActiveAnimation.h', 25 'CCActiveAnimation.h',
22 'CCAppendQuadsData.h', 26 'CCAppendQuadsData.h',
23 'CCAnimationCurve.cpp', 27 'CCAnimationCurve.cpp',
24 'CCAnimationCurve.h', 28 'CCAnimationCurve.h',
25 'CCAnimationEvents.h', 29 'CCAnimationEvents.h',
26 'CCCheckerboardDrawQuad.cpp', 30 'CCCheckerboardDrawQuad.cpp',
27 'CCCheckerboardDrawQuad.h', 31 'CCCheckerboardDrawQuad.h',
28 'CCCompletionEvent.h', 32 'CCCompletionEvent.h',
29 'CCDamageTracker.cpp', 33 'CCDamageTracker.cpp',
30 'CCDamageTracker.h', 34 'CCDamageTracker.h',
31 'CCDebugBorderDrawQuad.cpp', 35 'CCDebugBorderDrawQuad.cpp',
32 'CCDebugBorderDrawQuad.h', 36 'CCDebugBorderDrawQuad.h',
33 'CCDebugRectHistory.cpp', 37 'CCDebugRectHistory.cpp',
34 'CCDebugRectHistory.h', 38 'CCDebugRectHistory.h',
35 'CCDelayBasedTimeSource.cpp', 39 'CCDelayBasedTimeSource.cpp',
36 'CCDelayBasedTimeSource.h', 40 'CCDelayBasedTimeSource.h',
37 'CCDelegatedRendererLayerImpl.cpp', 41 'CCDelegatedRendererLayerImpl.cpp',
38 'CCDelegatedRendererLayerImpl.h', 42 'CCDelegatedRendererLayerImpl.h',
43 'CCDelegatingRenderer.cpp',
44 'CCDelegatingRenderer.h',
39 'CCDirectRenderer.cpp', 45 'CCDirectRenderer.cpp',
40 'CCDirectRenderer.h', 46 'CCDirectRenderer.h',
41 'CCDrawQuad.cpp', 47 'CCDrawQuad.cpp',
42 'CCDrawQuad.h', 48 'CCDrawQuad.h',
43 'CCFontAtlas.cpp', 49 'CCFontAtlas.cpp',
44 'CCFontAtlas.h', 50 'CCFontAtlas.h',
45 'CCFrameRateController.cpp', 51 'CCFrameRateController.cpp',
46 'CCFrameRateController.h', 52 'CCFrameRateController.h',
47 'CCFrameRateCounter.cpp', 53 'CCFrameRateCounter.cpp',
48 'CCFrameRateCounter.h', 54 'CCFrameRateCounter.h',
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 'stubs/NotImplemented.h', 279 'stubs/NotImplemented.h',
274 'stubs/Region.h', 280 'stubs/Region.h',
275 'stubs/SkiaUtils.h', 281 'stubs/SkiaUtils.h',
276 'stubs/TilingData.h', 282 'stubs/TilingData.h',
277 'stubs/TraceEvent.h', 283 'stubs/TraceEvent.h',
278 'stubs/UnitBezier.h', 284 'stubs/UnitBezier.h',
279 ], 285 ],
280 }], 286 }],
281 ], 287 ],
282 }, 288 },
289 {
290 'target_name': 'cc_ipc',
291 'type': 'static_library',
292 'includes': [
293 'cc.gypi',
294 ],
295 'conditions': [
296 ['use_libcc_for_compositor==1', {
297 'dependencies': [
298 'cc',
299 '<(DEPTH)/ipc/ipc.gyp:ipc',
300 '<(DEPTH)/skia/skia.gyp:skia',
301 '<(DEPTH)/ui/ui.gyp:ui',
302 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf',
303 ],
304 'defines': [
305 'WTF_USE_ACCELERATED_COMPOSITING=1',
306 ],
307 'include_dirs': [
308 '<(webkit_src_dir)/Source/Platform/chromium',
309 '<@(cc_stubs_dirs)',
310 ],
311 'sources': [
312 'ipc/cc_param_traits.h',
313 'ipc/cc_param_traits.cc',
314 'ipc/cc_render_pass_traits.h',
315 'ipc/cc_render_pass_traits.cc',
316 ],
317 }],
318 ],
319 },
283 ], 320 ],
284 } 321 }
OLDNEW
« 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