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 'cc_source_files': [ | 8 'cc_source_files': [ |
9 'animation/animation.cc', | 9 'animation/animation.cc', |
10 'animation/animation.h', | 10 'animation/animation.h', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'layers/image_layer.h', | 91 'layers/image_layer.h', |
92 'input/input_handler.h', | 92 'input/input_handler.h', |
93 'quads/io_surface_draw_quad.cc', | 93 'quads/io_surface_draw_quad.cc', |
94 'quads/io_surface_draw_quad.h', | 94 'quads/io_surface_draw_quad.h', |
95 'layers/io_surface_layer.cc', | 95 'layers/io_surface_layer.cc', |
96 'layers/io_surface_layer.h', | 96 'layers/io_surface_layer.h', |
97 'layers/io_surface_layer_impl.cc', | 97 'layers/io_surface_layer_impl.cc', |
98 'layers/io_surface_layer_impl.h', | 98 'layers/io_surface_layer_impl.h', |
99 'animation/keyframed_animation_curve.cc', | 99 'animation/keyframed_animation_curve.cc', |
100 'animation/keyframed_animation_curve.h', | 100 'animation/keyframed_animation_curve.h', |
| 101 'debug/latency_info.cc', |
101 'debug/latency_info.h', | 102 'debug/latency_info.h', |
102 'layers/layer.cc', | 103 'layers/layer.cc', |
103 'layers/layer.h', | 104 'layers/layer.h', |
104 'animation/layer_animation_controller.cc', | 105 'animation/layer_animation_controller.cc', |
105 'animation/layer_animation_controller.h', | 106 'animation/layer_animation_controller.h', |
106 'animation/layer_animation_event_observer.h', | 107 'animation/layer_animation_event_observer.h', |
107 'animation/layer_animation_value_observer.h', | 108 'animation/layer_animation_value_observer.h', |
108 'layers/layer_impl.cc', | 109 'layers/layer_impl.cc', |
109 'layers/layer_impl.h', | 110 'layers/layer_impl.h', |
110 'layers/layer_iterator.cc', | 111 'layers/layer_iterator.cc', |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 'CC_IMPLEMENTATION=1', | 381 'CC_IMPLEMENTATION=1', |
381 ], | 382 ], |
382 'sources': [ | 383 'sources': [ |
383 '<@(cc_source_files)', | 384 '<@(cc_source_files)', |
384 ], | 385 ], |
385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 386 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
386 'msvs_disabled_warnings': [ 4267, ], | 387 'msvs_disabled_warnings': [ 4267, ], |
387 }, | 388 }, |
388 ], | 389 ], |
389 } | 390 } |
OLD | NEW |