OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 'webkit_compositor_bindings_sources': [ | |
9 'web_animation_curve_common.cc', | |
10 'web_animation_curve_common.h', | |
11 'web_animation_impl.cc', | |
12 'web_animation_impl.h', | |
13 'web_content_layer_impl.cc', | |
14 'web_content_layer_impl.h', | |
15 'web_external_texture_layer_impl.cc', | |
16 'web_external_texture_layer_impl.h', | |
17 'web_float_animation_curve_impl.cc', | |
18 'web_float_animation_curve_impl.h', | |
19 'web_image_layer_impl.cc', | |
20 'web_image_layer_impl.h', | |
21 'web_layer_impl.cc', | |
22 'web_layer_impl.h', | |
23 'web_layer_impl_fixed_bounds.cc', | |
24 'web_layer_impl_fixed_bounds.h', | |
25 'web_to_ccinput_handler_adapter.cc', | |
26 'web_to_ccinput_handler_adapter.h', | |
27 'web_to_ccscrollbar_theme_painter_adapter.cc', | |
28 'web_to_ccscrollbar_theme_painter_adapter.h', | |
29 'web_layer_tree_view_impl_for_testing.cc', | |
30 'web_layer_tree_view_impl_for_testing.h', | |
31 'web_scrollbar_layer_impl.cc', | |
32 'web_scrollbar_layer_impl.h', | |
33 'web_solid_color_layer_impl.cc', | |
34 'web_solid_color_layer_impl.h', | |
35 'web_transform_operations_impl.cc', | |
36 'web_transform_operations_impl.h', | |
37 'web_transform_animation_curve_impl.cc', | |
38 'web_transform_animation_curve_impl.h', | |
39 ], | |
40 }, | |
41 'targets': [ | |
42 { | |
43 'target_name': 'webkit_compositor_support', | |
44 'type': 'static_library', | |
45 'dependencies': [ | |
46 '../../skia/skia.gyp:skia', | |
47 '../../cc/cc.gyp:cc', | |
48 'webkit_compositor_bindings', | |
49 ], | |
50 'sources': [ | |
51 'web_compositor_support_impl.cc', | |
52 'web_compositor_support_impl.h', | |
53 ], | |
54 'include_dirs': [ | |
55 '../..', | |
56 '<(SHARED_INTERMEDIATE_DIR)/webkit', | |
57 ], | |
58 }, | |
59 { | |
60 'target_name': 'webkit_compositor_bindings', | |
61 'type': '<(component)', | |
62 'dependencies': [ | |
63 '../../base/base.gyp:base', | |
64 '../../cc/cc.gyp:cc', | |
65 '../../gpu/gpu.gyp:gpu', | |
66 '../../media/media.gyp:media', | |
67 '../../skia/skia.gyp:skia', | |
68 '../../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | |
69 '../../ui/ui.gyp:ui', | |
70 '../../webkit/gpu/webkit_gpu.gyp:webkit_gpu', | |
71 ], | |
72 'sources': [ | |
73 '<@(webkit_compositor_bindings_sources)', | |
74 ], | |
75 'defines': [ | |
76 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | |
77 ] | |
78 }, | |
79 ], | |
80 } | |
OLD | NEW |