| 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 'cc_source_files': [ | 7 'cc_source_files': [ |
| 8 'animation/animation.cc', | 8 'animation/animation.cc', |
| 9 'animation/animation.h', | 9 'animation/animation.h', |
| 10 'animation/animation_curve.cc', | 10 'animation/animation_curve.cc', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'layers/layer.cc', | 100 'layers/layer.cc', |
| 101 'layers/layer.h', | 101 'layers/layer.h', |
| 102 'animation/layer_animation_controller.cc', | 102 'animation/layer_animation_controller.cc', |
| 103 'animation/layer_animation_controller.h', | 103 'animation/layer_animation_controller.h', |
| 104 'animation/layer_animation_event_observer.h', | 104 'animation/layer_animation_event_observer.h', |
| 105 'animation/layer_animation_value_observer.h', | 105 'animation/layer_animation_value_observer.h', |
| 106 'layers/layer_impl.cc', | 106 'layers/layer_impl.cc', |
| 107 'layers/layer_impl.h', | 107 'layers/layer_impl.h', |
| 108 'layers/layer_iterator.cc', | 108 'layers/layer_iterator.cc', |
| 109 'layers/layer_iterator.h', | 109 'layers/layer_iterator.h', |
| 110 'layers/layer_lists.h', |
| 110 'resources/layer_painter.h', | 111 'resources/layer_painter.h', |
| 111 'resources/layer_quad.cc', | 112 'resources/layer_quad.cc', |
| 112 'resources/layer_quad.h', | 113 'resources/layer_quad.h', |
| 113 'trees/layer_sorter.cc', | 114 'trees/layer_sorter.cc', |
| 114 'trees/layer_sorter.h', | 115 'trees/layer_sorter.h', |
| 115 'resources/layer_tiling_data.cc', | 116 'resources/layer_tiling_data.cc', |
| 116 'resources/layer_tiling_data.h', | 117 'resources/layer_tiling_data.h', |
| 117 'debug/layer_tree_debug_state.cc', | 118 'debug/layer_tree_debug_state.cc', |
| 118 'debug/layer_tree_debug_state.h', | 119 'debug/layer_tree_debug_state.h', |
| 119 'trees/layer_tree_host.cc', | 120 'trees/layer_tree_host.cc', |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'CC_IMPLEMENTATION=1', | 374 'CC_IMPLEMENTATION=1', |
| 374 ], | 375 ], |
| 375 'sources': [ | 376 'sources': [ |
| 376 '<@(cc_source_files)', | 377 '<@(cc_source_files)', |
| 377 ], | 378 ], |
| 378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 379 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 379 'msvs_disabled_warnings': [ 4267, ], | 380 'msvs_disabled_warnings': [ 4267, ], |
| 380 }, | 381 }, |
| 381 ], | 382 ], |
| 382 } | 383 } |
| OLD | NEW |