| 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 'web_animation_curve_common.cc', | 9 'web_animation_curve_common.cc', |
| 10 'web_animation_curve_common.h', | 10 'web_animation_curve_common.h', |
| 11 'web_animation_impl.cc', | 11 'web_animation_impl.cc', |
| 12 'web_animation_impl.h', | 12 'web_animation_impl.h', |
| 13 'web_content_layer_impl.cc', | 13 'web_content_layer_impl.cc', |
| 14 'web_content_layer_impl.h', | 14 'web_content_layer_impl.h', |
| 15 'web_external_texture_layer_impl.cc', | 15 'web_external_texture_layer_impl.cc', |
| 16 'web_external_texture_layer_impl.h', | 16 'web_external_texture_layer_impl.h', |
| 17 'web_float_animation_curve_impl.cc', | 17 'web_float_animation_curve_impl.cc', |
| 18 'web_float_animation_curve_impl.h', | 18 'web_float_animation_curve_impl.h', |
| 19 'web_image_layer_impl.cc', | 19 'web_image_layer_impl.cc', |
| 20 'web_image_layer_impl.h', | 20 'web_image_layer_impl.h', |
| 21 'web_layer_impl.cc', | 21 'web_layer_impl.cc', |
| 22 'web_layer_impl.h', | 22 'web_layer_impl.h', |
| 23 'web_layer_impl_fixed_bounds.cc', | 23 'web_layer_impl_fixed_bounds.cc', |
| 24 'web_layer_impl_fixed_bounds.h', | 24 'web_layer_impl_fixed_bounds.h', |
| 25 'web_to_ccinput_handler_adapter.cc', | 25 'web_to_ccinput_handler_adapter.cc', |
| 26 'web_to_ccinput_handler_adapter.h', | 26 'web_to_ccinput_handler_adapter.h', |
| 27 'web_to_ccscrollbar_theme_painter_adapter.cc', | 27 'web_to_ccscrollbar_theme_painter_adapter.cc', |
| 28 'web_to_ccscrollbar_theme_painter_adapter.h', | 28 'web_to_ccscrollbar_theme_painter_adapter.h', |
| 29 'web_to_ccvideo_frame_provider.cc', | |
| 30 'web_to_ccvideo_frame_provider.h', | |
| 31 'web_layer_tree_view_impl_for_testing.cc', | 29 'web_layer_tree_view_impl_for_testing.cc', |
| 32 'web_layer_tree_view_impl_for_testing.h', | 30 'web_layer_tree_view_impl_for_testing.h', |
| 33 'web_scrollbar_layer_impl.cc', | 31 'web_scrollbar_layer_impl.cc', |
| 34 'web_scrollbar_layer_impl.h', | 32 'web_scrollbar_layer_impl.h', |
| 35 'web_solid_color_layer_impl.cc', | 33 'web_solid_color_layer_impl.cc', |
| 36 'web_solid_color_layer_impl.h', | 34 'web_solid_color_layer_impl.h', |
| 37 'web_transform_operations_impl.cc', | 35 'web_transform_operations_impl.cc', |
| 38 'web_transform_operations_impl.h', | 36 'web_transform_operations_impl.h', |
| 39 'web_video_layer_impl.cc', | |
| 40 'web_video_layer_impl.h', | |
| 41 'web_transform_animation_curve_impl.cc', | 37 'web_transform_animation_curve_impl.cc', |
| 42 'web_transform_animation_curve_impl.h', | 38 'web_transform_animation_curve_impl.h', |
| 43 ], | 39 ], |
| 44 'conditions': [ | 40 'conditions': [ |
| 45 ['inside_chromium_build==0', { | 41 ['inside_chromium_build==0', { |
| 46 'webkit_src_dir': '../../../../..', | 42 'webkit_src_dir': '../../../../..', |
| 47 },{ | 43 },{ |
| 48 'webkit_src_dir': '../../third_party/WebKit', | 44 'webkit_src_dir': '../../third_party/WebKit', |
| 49 }], | 45 }], |
| 50 ], | 46 ], |
| (...skipping 30 matching lines...) Expand all Loading... |
| 81 ], | 77 ], |
| 82 'sources': [ | 78 'sources': [ |
| 83 '<@(webkit_compositor_bindings_sources)', | 79 '<@(webkit_compositor_bindings_sources)', |
| 84 ], | 80 ], |
| 85 'defines': [ | 81 'defines': [ |
| 86 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 82 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
| 87 ] | 83 ] |
| 88 }, | 84 }, |
| 89 ], | 85 ], |
| 90 } | 86 } |
| OLD | NEW |