| 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 25 matching lines...) Expand all Loading... |
| 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', | 44 'web_transform_operations_impl.cc', |
| 45 'web_transform_operations_impl.h', | 45 'web_transform_operations_impl.h', |
| 46 'web_transformation_matrix_util.cc', |
| 47 'web_transformation_matrix_util.h', |
| 46 'web_video_layer_impl.cc', | 48 'web_video_layer_impl.cc', |
| 47 'web_video_layer_impl.h', | 49 'web_video_layer_impl.h', |
| 48 'web_transform_animation_curve_impl.cc', | 50 'web_transform_animation_curve_impl.cc', |
| 49 'web_transform_animation_curve_impl.h', | 51 'web_transform_animation_curve_impl.h', |
| 50 ], | 52 ], |
| 51 'conditions': [ | 53 'conditions': [ |
| 52 ['inside_chromium_build==0', { | 54 ['inside_chromium_build==0', { |
| 53 'webkit_src_dir': '../../../../..', | 55 'webkit_src_dir': '../../../../..', |
| 54 },{ | 56 },{ |
| 55 'webkit_src_dir': '../../third_party/WebKit', | 57 'webkit_src_dir': '../../third_party/WebKit', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 ], | 89 ], |
| 88 'sources': [ | 90 'sources': [ |
| 89 '<@(webkit_compositor_bindings_sources)', | 91 '<@(webkit_compositor_bindings_sources)', |
| 90 ], | 92 ], |
| 91 'defines': [ | 93 'defines': [ |
| 92 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 94 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
| 93 ] | 95 ] |
| 94 }, | 96 }, |
| 95 ], | 97 ], |
| 96 } | 98 } |
| OLD | NEW |