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 'webkit_compositor_bindings_sources': [ | 7 'webkit_compositor_bindings_sources': [ |
8 'web_animation_curve_common.cc', | 8 'web_animation_curve_common.cc', |
9 'web_animation_curve_common.h', | 9 'web_animation_curve_common.h', |
10 'web_animation_impl.cc', | 10 'web_animation_impl.cc', |
(...skipping 27 matching lines...) Expand all Loading... |
38 'web_transform_animation_curve_impl.cc', | 38 'web_transform_animation_curve_impl.cc', |
39 'web_transform_animation_curve_impl.h', | 39 'web_transform_animation_curve_impl.h', |
40 ], | 40 ], |
41 }, | 41 }, |
42 'targets': [ | 42 'targets': [ |
43 { | 43 { |
44 'target_name': 'webkit_compositor_support', | 44 'target_name': 'webkit_compositor_support', |
45 'type': 'static_library', | 45 'type': 'static_library', |
46 'dependencies': [ | 46 'dependencies': [ |
47 '../../skia/skia.gyp:skia', | 47 '../../skia/skia.gyp:skia', |
48 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', | |
49 'webkit_compositor_bindings', | 48 'webkit_compositor_bindings', |
50 ], | 49 ], |
51 'sources': [ | 50 'sources': [ |
52 'web_compositor_support_impl.cc', | 51 'web_compositor_support_impl.cc', |
53 'web_compositor_support_impl.h', | 52 'web_compositor_support_impl.h', |
54 ], | 53 ], |
55 'includes': [ | 54 'includes': [ |
56 '../../cc/cc.gypi', | 55 '../../cc/cc.gypi', |
57 ], | 56 ], |
58 'include_dirs': [ | 57 'include_dirs': [ |
59 '../..', | 58 '../..', |
60 '../../cc', | 59 '../../cc', |
61 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 60 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
62 '<(webkit_src_dir)/Source/Platform/chromium', | 61 '<(webkit_src_dir)/Source/Platform/chromium', |
63 '<@(cc_stubs_dirs)', | 62 '<@(cc_stubs_dirs)', |
64 ], | 63 ], |
65 }, | 64 }, |
66 { | 65 { |
67 'target_name': 'webkit_compositor_bindings', | 66 'target_name': 'webkit_compositor_bindings', |
68 'type': 'static_library', | 67 'type': 'static_library', |
69 'includes': [ | 68 'includes': [ |
70 '../../cc/cc.gypi', | 69 '../../cc/cc.gypi', |
71 ], | 70 ], |
72 'dependencies': [ | 71 'dependencies': [ |
73 '../../base/base.gyp:base', | 72 '../../base/base.gyp:base', |
74 '../../cc/cc.gyp:cc', | 73 '../../cc/cc.gyp:cc', |
75 '../../skia/skia.gyp:skia', | 74 '../../skia/skia.gyp:skia', |
76 '../../ui/ui.gyp:ui', | 75 '../../ui/ui.gyp:ui', |
77 # We have to depend on WTF directly to pick up the correct defines for W
TF headers - for instance USE_SYSTEM_MALLOC. | |
78 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', | |
79 '<(webkit_src_dir)/Source/WebCore/WebCore.gyp/WebCore.gyp:webcore_platfo
rm_geometry', | |
80 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_support'
, | |
81 ], | 76 ], |
82 'include_dirs': [ | 77 'include_dirs': [ |
83 '../../cc', | 78 '../../cc', |
84 '<@(cc_stubs_dirs)', | 79 '<@(cc_stubs_dirs)', |
85 '<(webkit_src_dir)/Source/Platform/chromium', | 80 '<(webkit_src_dir)/Source/Platform/chromium', |
86 ], | 81 ], |
87 'sources': [ | 82 'sources': [ |
88 '<@(webkit_compositor_bindings_sources)', | 83 '<@(webkit_compositor_bindings_sources)', |
89 ], | 84 ], |
90 }, | 85 }, |
91 ], | 86 ], |
92 } | 87 } |
OLD | NEW |