| 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 'web_animation_curve_common.cc', | 8 'web_animation_curve_common.cc', |
| 9 'web_animation_curve_common.h', | 9 'web_animation_curve_common.h', |
| 10 'web_animation_id_provider.cc', | 10 'web_animation_id_provider.cc', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'web_to_ccscrollbar_theme_painter_adapter.cc', | 34 'web_to_ccscrollbar_theme_painter_adapter.cc', |
| 35 'web_to_ccscrollbar_theme_painter_adapter.h', | 35 'web_to_ccscrollbar_theme_painter_adapter.h', |
| 36 'web_to_ccvideo_frame_provider.cc', | 36 'web_to_ccvideo_frame_provider.cc', |
| 37 'web_to_ccvideo_frame_provider.h', | 37 'web_to_ccvideo_frame_provider.h', |
| 38 'web_layer_tree_view_impl.cc', | 38 'web_layer_tree_view_impl.cc', |
| 39 'web_layer_tree_view_impl.h', | 39 'web_layer_tree_view_impl.h', |
| 40 'web_scrollbar_layer_impl.cc', | 40 'web_scrollbar_layer_impl.cc', |
| 41 'web_scrollbar_layer_impl.h', | 41 'web_scrollbar_layer_impl.h', |
| 42 'web_solid_color_layer_impl.cc', | 42 'web_solid_color_layer_impl.cc', |
| 43 'web_solid_color_layer_impl.h', | 43 'web_solid_color_layer_impl.h', |
| 44 'web_transform_operations_impl.cc', |
| 45 'web_transform_operations_impl.h', |
| 44 'web_video_layer_impl.cc', | 46 'web_video_layer_impl.cc', |
| 45 'web_video_layer_impl.h', | 47 'web_video_layer_impl.h', |
| 46 'web_transform_animation_curve_impl.cc', | 48 'web_transform_animation_curve_impl.cc', |
| 47 'web_transform_animation_curve_impl.h', | 49 'web_transform_animation_curve_impl.h', |
| 48 ], | 50 ], |
| 49 'conditions': [ | 51 'conditions': [ |
| 50 ['inside_chromium_build==0', { | 52 ['inside_chromium_build==0', { |
| 51 'webkit_src_dir': '../../../../..', | 53 'webkit_src_dir': '../../../../..', |
| 52 },{ | 54 },{ |
| 53 'webkit_src_dir': '../../third_party/WebKit', | 55 'webkit_src_dir': '../../third_party/WebKit', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 ], | 87 ], |
| 86 'sources': [ | 88 'sources': [ |
| 87 '<@(webkit_compositor_bindings_sources)', | 89 '<@(webkit_compositor_bindings_sources)', |
| 88 ], | 90 ], |
| 89 'defines': [ | 91 'defines': [ |
| 90 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 92 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
| 91 ] | 93 ] |
| 92 }, | 94 }, |
| 93 ], | 95 ], |
| 94 } | 96 } |
| OLD | NEW |