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

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

Issue 10920056: Make cc_unittests and webkit_compositor_unittests executable always (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename to webkit_compositor_bindings 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_sources': [ 9 'webkit_compositor_bindings_sources': [
10 'CCThreadImpl.cpp', 10 'CCThreadImpl.cpp',
11 'CCThreadImpl.h', 11 'CCThreadImpl.h',
12 'PlatformGestureCurve.h', 12 'PlatformGestureCurve.h',
13 'PlatformGestureCurveTarget.h', 13 'PlatformGestureCurveTarget.h',
14 'TouchpadFlingPlatformGestureCurve.h', 14 'TouchpadFlingPlatformGestureCurve.h',
15 'WebAnimationCurveCommon.cpp', 15 'WebAnimationCurveCommon.cpp',
16 'WebAnimationCurveCommon.h', 16 'WebAnimationCurveCommon.h',
17 'WebAnimationImpl.cpp', 17 'WebAnimationImpl.cpp',
18 'WebAnimationImpl.h', 18 'WebAnimationImpl.h',
19 'WebCompositorImpl.cpp', 19 'WebCompositorImpl.cpp',
(...skipping 22 matching lines...) Expand all
42 'WebTransformAnimationCurveImpl.h', 42 'WebTransformAnimationCurveImpl.h',
43 'WebVideoLayerImpl.cpp', 43 'WebVideoLayerImpl.cpp',
44 'WebVideoLayerImpl.h', 44 'WebVideoLayerImpl.h',
45 'WheelFlingPlatformGestureCurve.h', 45 'WheelFlingPlatformGestureCurve.h',
46 ], 46 ],
47 }, 47 },
48 'conditions': [ 48 'conditions': [
49 ['use_libcc_for_compositor==1', { 49 ['use_libcc_for_compositor==1', {
50 'targets': [ 50 'targets': [
51 { 51 {
52 'target_name': 'webkit_compositor', 52 'target_name': 'webkit_compositor_bindings',
53 'type': 'static_library', 53 'type': 'static_library',
54 'dependencies': [ 54 'dependencies': [
55 '../../base/base.gyp:base', 55 '../../base/base.gyp:base',
56 '../../cc/cc.gyp:cc', 56 '../../cc/cc.gyp:cc',
57 '../../skia/skia.gyp:skia', 57 '../../skia/skia.gyp:skia',
58 '../../third_party/WebKit/Source/Platform/Platform.gyp/Platform.gyp: webkit_platform', 58 '../../third_party/WebKit/Source/Platform/Platform.gyp/Platform.gyp: webkit_platform',
59 # We have to depend on WTF directly to pick up the correct defines f or WTF headers - for instance USE_SYSTEM_MALLOC. 59 # We have to depend on WTF directly to pick up the correct defines f or WTF headers - for instance USE_SYSTEM_MALLOC.
60 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', 60 '../../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf',
61 ], 61 ],
62 'defines': [ 62 'defines': [
63 'WEBKIT_IMPLEMENTATION=1', 63 'WEBKIT_IMPLEMENTATION=1',
64 ], 64 ],
65 'include_dirs': [ 65 'include_dirs': [
66 '../../cc', 66 '../../cc',
67 '../../cc/stubs', 67 '../../cc/stubs',
68 'stubs', 68 'stubs',
69 '../../third_party/WebKit/Source/WebKit/chromium/public', 69 '../../third_party/WebKit/Source/WebKit/chromium/public',
70 ], 70 ],
71 'sources': [ 71 'sources': [
72 '<@(webkit_compositor_sources)', 72 '<@(webkit_compositor_bindings_sources)',
73 'stubs/AnimationIdVendor.h', 73 'stubs/AnimationIdVendor.h',
74 'stubs/public/WebTransformationMatrix', 74 'stubs/public/WebTransformationMatrix',
75 ], 75 ],
76 } 76 }
77 ], 77 ],
78 }], 78 }],
79 ], 79 ],
80 } 80 }
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/WheelFlingPlatformGestureCurve.h ('k') | webkit/compositor_bindings/compositor_bindings_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698