| 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 'CCThreadImpl.cpp', | 8 'ccthread_impl.cc', |
| 9 'CCThreadImpl.h', | 9 'ccthread_impl.h', |
| 10 'WebAnimationCurveCommon.cpp', | 10 'web_animation_curve_common.cc', |
| 11 'WebAnimationCurveCommon.h', | 11 'web_animation_curve_common.h', |
| 12 'WebAnimationImpl.cpp', | 12 'web_animation_impl.cc', |
| 13 'WebAnimationImpl.h', | 13 'web_animation_impl.h', |
| 14 'WebCompositorImpl.cpp', | 14 'web_compositor_impl.cc', |
| 15 'WebCompositorImpl.h', | 15 'web_compositor_impl.h', |
| 16 'WebContentLayerImpl.cpp', | 16 'web_content_layer_impl.cc', |
| 17 'WebContentLayerImpl.h', | 17 'web_content_layer_impl.h', |
| 18 'WebDelegatedRendererLayerImpl.cpp', | 18 'web_delegated_renderer_layer_impl.cc', |
| 19 'WebDelegatedRendererLayerImpl.h', | 19 'web_delegated_renderer_layer_impl.h', |
| 20 'WebExternalTextureLayerImpl.cpp', | 20 'web_external_texture_layer_impl.cc', |
| 21 'WebExternalTextureLayerImpl.h', | 21 'web_external_texture_layer_impl.h', |
| 22 'WebFloatAnimationCurveImpl.cpp', | 22 'web_float_animation_curve_impl.cc', |
| 23 'WebFloatAnimationCurveImpl.h', | 23 'web_float_animation_curve_impl.h', |
| 24 'WebIOSurfaceLayerImpl.cpp', | 24 'web_io_surface_layer_impl.cc', |
| 25 'WebIOSurfaceLayerImpl.h', | 25 'web_io_surface_layer_impl.h', |
| 26 'WebImageLayerImpl.cpp', | 26 'web_image_layer_impl.cc', |
| 27 'WebImageLayerImpl.h', | 27 'web_image_layer_impl.h', |
| 28 'WebLayerImpl.cpp', | 28 'web_layer_impl.cc', |
| 29 'WebLayerImpl.h', | 29 'web_layer_impl.h', |
| 30 'WebToCCInputHandlerAdapter.cpp', | 30 'web_to_ccinput_handler_adapter.cc', |
| 31 'WebToCCInputHandlerAdapter.h', | 31 'web_to_ccinput_handler_adapter.h', |
| 32 'WebLayerTreeViewImpl.cpp', | 32 'web_layer_tree_view_impl.cc', |
| 33 'WebLayerTreeViewImpl.h', | 33 'web_layer_tree_view_impl.h', |
| 34 'WebScrollbarLayerImpl.cpp', | 34 'web_scrollbar_layer_impl.cc', |
| 35 'WebScrollbarLayerImpl.h', | 35 'web_scrollbar_layer_impl.h', |
| 36 'WebSolidColorLayerImpl.cpp', | 36 'web_solid_color_layer_impl.cc', |
| 37 'WebSolidColorLayerImpl.h', | 37 'web_solid_color_layer_impl.h', |
| 38 'WebVideoLayerImpl.cpp', | 38 'web_video_layer_impl.cc', |
| 39 'WebVideoLayerImpl.h', | 39 'web_video_layer_impl.h', |
| 40 'WebTransformAnimationCurveImpl.cpp', | 40 'web_transform_animation_curve_impl.cc', |
| 41 'WebTransformAnimationCurveImpl.h', | 41 'web_transform_animation_curve_impl.h', |
| 42 ], | 42 ], |
| 43 }, | 43 }, |
| 44 'targets': [ | 44 'targets': [ |
| 45 { | 45 { |
| 46 'target_name': 'webkit_compositor_support', | 46 'target_name': 'webkit_compositor_support', |
| 47 'type': 'static_library', | 47 'type': 'static_library', |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 '../../skia/skia.gyp:skia', | 49 '../../skia/skia.gyp:skia', |
| 50 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 50 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
| 51 'webkit_compositor_bindings', | 51 'webkit_compositor_bindings', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 '<(webkit_src_dir)/Source/Platform/chromium', | 84 '<(webkit_src_dir)/Source/Platform/chromium', |
| 85 ], | 85 ], |
| 86 'sources': [ | 86 'sources': [ |
| 87 '<@(webkit_compositor_bindings_sources)', | 87 '<@(webkit_compositor_bindings_sources)', |
| 88 'webcore_convert.cc', | 88 'webcore_convert.cc', |
| 89 'webcore_convert.h', | 89 'webcore_convert.h', |
| 90 ], | 90 ], |
| 91 }, | 91 }, |
| 92 ], | 92 ], |
| 93 } | 93 } |
| OLD | NEW |