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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'webkit_compositor_bindings_sources': [ | 8 'webkit_compositor_bindings_sources': [ |
9 'scrollbar_impl.cc', | 9 'scrollbar_impl.cc', |
10 'scrollbar_impl.h', | 10 'scrollbar_impl.h', |
(...skipping 26 matching lines...) Expand all Loading... |
37 'web_transform_animation_curve_impl.h', | 37 'web_transform_animation_curve_impl.h', |
38 ], | 38 ], |
39 }, | 39 }, |
40 'targets': [ | 40 'targets': [ |
41 { | 41 { |
42 'target_name': 'webkit_compositor_support', | 42 'target_name': 'webkit_compositor_support', |
43 'type': 'static_library', | 43 'type': 'static_library', |
44 'dependencies': [ | 44 'dependencies': [ |
45 '<(DEPTH)/skia/skia.gyp:skia', | 45 '<(DEPTH)/skia/skia.gyp:skia', |
46 '<(DEPTH)/cc/cc.gyp:cc', | 46 '<(DEPTH)/cc/cc.gyp:cc', |
| 47 '<(DEPTH)/build/linux/system.gyp:wayland', |
| 48 '<(DEPTH)/build/linux/system.gyp:glib', |
47 'webkit_compositor_bindings', | 49 'webkit_compositor_bindings', |
48 ], | 50 ], |
49 'sources': [ | 51 'sources': [ |
50 'web_compositor_support_impl.cc', | 52 'web_compositor_support_impl.cc', |
51 'web_compositor_support_impl.h', | 53 'web_compositor_support_impl.h', |
52 ], | 54 ], |
53 'include_dirs': [ | 55 'include_dirs': [ |
54 '../..', | 56 '../..', |
55 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 57 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
56 ], | 58 ], |
(...skipping 13 matching lines...) Expand all Loading... |
70 ], | 72 ], |
71 'sources': [ | 73 'sources': [ |
72 '<@(webkit_compositor_bindings_sources)', | 74 '<@(webkit_compositor_bindings_sources)', |
73 ], | 75 ], |
74 'defines': [ | 76 'defines': [ |
75 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 77 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
76 ] | 78 ] |
77 }, | 79 }, |
78 ], | 80 ], |
79 } | 81 } |
OLD | NEW |