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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 { | 66 { |
67 'target_name': 'webkit_compositor_bindings', | 67 'target_name': 'webkit_compositor_bindings', |
68 'type': 'static_library', | 68 'type': 'static_library', |
69 'includes': [ | 69 'includes': [ |
70 '../../cc/cc.gypi', | 70 '../../cc/cc.gypi', |
71 ], | 71 ], |
72 'dependencies': [ | 72 'dependencies': [ |
73 '../../base/base.gyp:base', | 73 '../../base/base.gyp:base', |
74 '../../cc/cc.gyp:cc', | 74 '../../cc/cc.gyp:cc', |
75 '../../skia/skia.gyp:skia', | 75 '../../skia/skia.gyp:skia', |
| 76 '../../ui/ui.gyp:ui', |
76 # We have to depend on WTF directly to pick up the correct defines for W
TF headers - for instance USE_SYSTEM_MALLOC. | 77 # We have to depend on WTF directly to pick up the correct defines for W
TF headers - for instance USE_SYSTEM_MALLOC. |
77 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 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'
, |
78 ], | 81 ], |
79 'include_dirs': [ | 82 'include_dirs': [ |
80 '../../cc', | 83 '../../cc', |
81 '<@(cc_stubs_dirs)', | 84 '<@(cc_stubs_dirs)', |
82 '<(webkit_src_dir)/Source/Platform/chromium', | 85 '<(webkit_src_dir)/Source/Platform/chromium', |
83 ], | 86 ], |
84 'sources': [ | 87 'sources': [ |
85 '<@(webkit_compositor_bindings_sources)', | 88 '<@(webkit_compositor_bindings_sources)', |
86 'webcore_convert.cc', | 89 'webcore_convert.cc', |
87 'webcore_convert.h', | 90 'webcore_convert.h', |
88 ], | 91 ], |
89 }, | 92 }, |
90 ], | 93 ], |
91 } | 94 } |
OLD | NEW |