- add sources.
[platform/framework/web/crosswalk.git] / src / webkit / renderer / compositor_bindings / compositor_bindings.gyp
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   },
9   'targets': [
10     {
11       'target_name': 'webkit_compositor_support',
12       'type': 'static_library',
13       'dependencies': [
14         '<(DEPTH)/skia/skia.gyp:skia',
15         '<(DEPTH)/cc/cc.gyp:cc',
16         'webkit_compositor_bindings',
17       ],
18       'sources': [
19         'web_compositor_support_impl.cc',
20         'web_compositor_support_impl.h',
21       ],
22       'include_dirs': [
23         '../..',
24         '<(SHARED_INTERMEDIATE_DIR)/webkit',
25       ],
26     },
27     {
28       'target_name': 'webkit_compositor_bindings',
29       'type': '<(component)',
30       'dependencies': [
31         '<(DEPTH)/base/base.gyp:base',
32         '<(DEPTH)/cc/cc.gyp:cc',
33         '<(DEPTH)/gpu/gpu.gyp:gpu',
34         '<(DEPTH)/media/media.gyp:media',
35         '<(DEPTH)/skia/skia.gyp:skia',
36         '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
37         '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
38         '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
39       ],
40       'defines': [
41         'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1'
42       ],
43       'sources': [
44         'scrollbar_impl.cc',
45         'scrollbar_impl.h',
46         'web_animation_curve_common.cc',
47         'web_animation_curve_common.h',
48         'web_animation_impl.cc',
49         'web_animation_impl.h',
50         'web_compositing_reasons.cc',
51         'web_content_layer_impl.cc',
52         'web_content_layer_impl.h',
53         'web_external_bitmap_impl.cc',
54         'web_external_bitmap_impl.h',
55         'web_external_texture_layer_impl.cc',
56         'web_external_texture_layer_impl.h',
57         'web_filter_animation_curve_impl.cc',
58         'web_filter_animation_curve_impl.h',
59         'web_filter_operations_impl.cc',
60         'web_filter_operations_impl.h',
61         'web_float_animation_curve_impl.cc',
62         'web_float_animation_curve_impl.h',
63         'web_image_layer_impl.cc',
64         'web_image_layer_impl.h',
65         'web_layer_impl.cc',
66         'web_layer_impl.h',
67         'web_layer_impl_fixed_bounds.cc',
68         'web_layer_impl_fixed_bounds.h',
69         'web_nine_patch_layer_impl.cc',
70         'web_nine_patch_layer_impl.h',
71         'web_scrollbar_layer_impl.cc',
72         'web_scrollbar_layer_impl.h',
73         'web_solid_color_layer_impl.cc',
74         'web_solid_color_layer_impl.h',
75         'web_to_cc_animation_delegate_adapter.cc',
76         'web_to_cc_animation_delegate_adapter.h',
77         'web_transform_animation_curve_impl.cc',
78         'web_transform_animation_curve_impl.h',
79         'web_transform_operations_impl.cc',
80         'web_transform_operations_impl.h',
81       ],
82     },
83   ],
84 }