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

Side by Side Diff: webkit/compositor_bindings/compositor_bindings.gyp

Issue 10917153: Update cc snapshot to r127918 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
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 'webkit_compositor_bindings_sources': [ 9 'webkit_compositor_bindings_sources': [
10 'CCThreadImpl.cpp', 10 'CCThreadImpl.cpp',
11 'CCThreadImpl.h', 11 'CCThreadImpl.h',
12 'PlatformGestureCurve.h',
13 'PlatformGestureCurveTarget.h',
14 'TouchpadFlingPlatformGestureCurve.h',
15 'WebAnimationCurveCommon.cpp', 12 'WebAnimationCurveCommon.cpp',
16 'WebAnimationCurveCommon.h', 13 'WebAnimationCurveCommon.h',
17 'WebAnimationImpl.cpp', 14 'WebAnimationImpl.cpp',
18 'WebAnimationImpl.h', 15 'WebAnimationImpl.h',
19 'WebCompositorImpl.cpp', 16 'WebCompositorImpl.cpp',
20 'WebCompositorImpl.h', 17 'WebCompositorImpl.h',
21 'WebCompositorInputHandlerImpl.cpp',
22 'WebCompositorInputHandlerImpl.h',
23 'WebContentLayerImpl.cpp', 18 'WebContentLayerImpl.cpp',
24 'WebContentLayerImpl.h', 19 'WebContentLayerImpl.h',
25 'WebExternalTextureLayerImpl.cpp', 20 'WebExternalTextureLayerImpl.cpp',
26 'WebExternalTextureLayerImpl.h', 21 'WebExternalTextureLayerImpl.h',
27 'WebFloatAnimationCurveImpl.cpp', 22 'WebFloatAnimationCurveImpl.cpp',
28 'WebFloatAnimationCurveImpl.h', 23 'WebFloatAnimationCurveImpl.h',
29 'WebIOSurfaceLayerImpl.cpp', 24 'WebIOSurfaceLayerImpl.cpp',
30 'WebIOSurfaceLayerImpl.h', 25 'WebIOSurfaceLayerImpl.h',
31 'WebImageLayerImpl.cpp', 26 'WebImageLayerImpl.cpp',
32 'WebImageLayerImpl.h', 27 'WebImageLayerImpl.h',
33 'WebLayerImpl.cpp', 28 'WebLayerImpl.cpp',
34 'WebLayerImpl.h', 29 'WebLayerImpl.h',
30 'WebToCCInputHandlerAdapter.cpp',
31 'WebToCCInputHandlerAdapter.h',
35 'WebLayerTreeViewImpl.cpp', 32 'WebLayerTreeViewImpl.cpp',
36 'WebLayerTreeViewImpl.h', 33 'WebLayerTreeViewImpl.h',
37 'WebScrollbarLayerImpl.cpp', 34 'WebScrollbarLayerImpl.cpp',
38 'WebScrollbarLayerImpl.h', 35 'WebScrollbarLayerImpl.h',
39 'WebSolidColorLayerImpl.cpp', 36 'WebSolidColorLayerImpl.cpp',
40 'WebSolidColorLayerImpl.h', 37 'WebSolidColorLayerImpl.h',
38 'WebVideoLayerImpl.cpp',
39 'WebVideoLayerImpl.h',
41 'WebTransformAnimationCurveImpl.cpp', 40 'WebTransformAnimationCurveImpl.cpp',
42 'WebTransformAnimationCurveImpl.h', 41 'WebTransformAnimationCurveImpl.h',
43 'WebVideoLayerImpl.cpp',
44 'WebVideoLayerImpl.h',
45 'WheelFlingPlatformGestureCurve.h',
46 ], 42 ],
47 'conditions': [ 43 'conditions': [
48 ['inside_chromium_build==0', { 44 ['inside_chromium_build==0', {
49 'webkit_src_dir': '../../../../..', 45 'webkit_src_dir': '../../../../..',
50 },{ 46 },{
51 'webkit_src_dir': '../../third_party/WebKit', 47 'webkit_src_dir': '../../third_party/WebKit',
52 }], 48 }],
53 ], 49 ],
54 50
55 51
(...skipping 17 matching lines...) Expand all
73 'conditions': [ 69 'conditions': [
74 ['use_libcc_for_compositor==1', { 70 ['use_libcc_for_compositor==1', {
75 'include_dirs': [ 71 'include_dirs': [
76 '../../cc', 72 '../../cc',
77 '../../cc/stubs', 73 '../../cc/stubs',
78 ], 74 ],
79 'dependencies': [ 75 'dependencies': [
80 'webkit_compositor_bindings', 76 'webkit_compositor_bindings',
81 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', 77 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf',
82 ], 78 ],
79 'defines': [
80 'USE_LIBCC_FOR_COMPOSITOR',
81 ],
83 }], 82 }],
84 ], 83 ],
85 }, 84 },
86 ], 85 ],
87 'conditions': [ 86 'conditions': [
88 ['use_libcc_for_compositor==1', { 87 ['use_libcc_for_compositor==1', {
89 'targets': [ 88 'targets': [
90 { 89 {
91 'target_name': 'webkit_compositor_bindings', 90 'target_name': 'webkit_compositor_bindings',
92 'type': 'static_library', 91 'type': 'static_library',
(...skipping 23 matching lines...) Expand all
116 'defines': [ 115 'defines': [
117 'WEBKIT_DLL', 116 'WEBKIT_DLL',
118 ], 117 ],
119 }], 118 }],
120 ] 119 ]
121 }, 120 },
122 ], 121 ],
123 }], 122 }],
124 ], 123 ],
125 } 124 }
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/WheelFlingPlatformGestureCurve.h ('k') | webkit/compositor_bindings/web_compositor_support_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698