OLD | NEW |
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 'hash_pair.h', | 10 'hash_pair.h', |
(...skipping 18 matching lines...) Expand all Loading... |
29 'CCDamageTracker.cpp', | 29 'CCDamageTracker.cpp', |
30 'CCDamageTracker.h', | 30 'CCDamageTracker.h', |
31 'CCDebugBorderDrawQuad.cpp', | 31 'CCDebugBorderDrawQuad.cpp', |
32 'CCDebugBorderDrawQuad.h', | 32 'CCDebugBorderDrawQuad.h', |
33 'CCDebugRectHistory.cpp', | 33 'CCDebugRectHistory.cpp', |
34 'CCDebugRectHistory.h', | 34 'CCDebugRectHistory.h', |
35 'CCDelayBasedTimeSource.cpp', | 35 'CCDelayBasedTimeSource.cpp', |
36 'CCDelayBasedTimeSource.h', | 36 'CCDelayBasedTimeSource.h', |
37 'CCDelegatedRendererLayerImpl.cpp', | 37 'CCDelegatedRendererLayerImpl.cpp', |
38 'CCDelegatedRendererLayerImpl.h', | 38 'CCDelegatedRendererLayerImpl.h', |
| 39 'CCDelegatingRenderer.cpp', |
| 40 'CCDelegatingRenderer.h', |
39 'CCDirectRenderer.cpp', | 41 'CCDirectRenderer.cpp', |
40 'CCDirectRenderer.h', | 42 'CCDirectRenderer.h', |
41 'CCDrawQuad.cpp', | 43 'CCDrawQuad.cpp', |
42 'CCDrawQuad.h', | 44 'CCDrawQuad.h', |
43 'CCFontAtlas.cpp', | 45 'CCFontAtlas.cpp', |
44 'CCFontAtlas.h', | 46 'CCFontAtlas.h', |
45 'CCFrameRateController.cpp', | 47 'CCFrameRateController.cpp', |
46 'CCFrameRateController.h', | 48 'CCFrameRateController.h', |
47 'CCFrameRateCounter.cpp', | 49 'CCFrameRateCounter.cpp', |
48 'CCFrameRateCounter.h', | 50 'CCFrameRateCounter.h', |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 'stubs/NotImplemented.h', | 275 'stubs/NotImplemented.h', |
274 'stubs/Region.h', | 276 'stubs/Region.h', |
275 'stubs/SkiaUtils.h', | 277 'stubs/SkiaUtils.h', |
276 'stubs/TilingData.h', | 278 'stubs/TilingData.h', |
277 'stubs/TraceEvent.h', | 279 'stubs/TraceEvent.h', |
278 'stubs/UnitBezier.h', | 280 'stubs/UnitBezier.h', |
279 ], | 281 ], |
280 }], | 282 }], |
281 ], | 283 ], |
282 }, | 284 }, |
| 285 { |
| 286 'target_name': 'cc_ipc', |
| 287 'type': 'static_library', |
| 288 'includes': [ |
| 289 'cc.gypi', |
| 290 ], |
| 291 'conditions': [ |
| 292 ['use_libcc_for_compositor==1', { |
| 293 'dependencies': [ |
| 294 'cc', |
| 295 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 296 '<(DEPTH)/skia/skia.gyp:skia', |
| 297 '<(DEPTH)/ui/ui.gyp:ui', |
| 298 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
| 299 ], |
| 300 'defines': [ |
| 301 'WTF_USE_ACCELERATED_COMPOSITING=1', |
| 302 ], |
| 303 'include_dirs': [ |
| 304 '<(webkit_src_dir)/Source/Platform/chromium', |
| 305 '<@(cc_stubs_dirs)', |
| 306 ], |
| 307 'sources': [ |
| 308 'ipc/cc_param_traits.h', |
| 309 'ipc/cc_param_traits.cc', |
| 310 'ipc/cc_render_pass_traits.h', |
| 311 'ipc/cc_render_pass_traits.cc', |
| 312 ], |
| 313 }], |
| 314 ], |
| 315 }, |
283 ], | 316 ], |
284 } | 317 } |
OLD | NEW |