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 'active_animation.cc', | 8 'active_animation.cc', |
9 'active_animation.h', | 9 'active_animation.h', |
10 'animation_curve.cc', | 10 'animation_curve.cc', |
11 'animation_curve.h', | 11 'animation_curve.h', |
12 'animation_events.h', | 12 'animation_events.h', |
| 13 'animation_registrar.cc', |
| 14 'animation_registrar.h', |
13 'append_quads_data.h', | 15 'append_quads_data.h', |
14 'bitmap_content_layer_updater.cc', | 16 'bitmap_content_layer_updater.cc', |
15 'bitmap_content_layer_updater.h', | 17 'bitmap_content_layer_updater.h', |
16 'bitmap_skpicture_content_layer_updater.cc', | 18 'bitmap_skpicture_content_layer_updater.cc', |
17 'bitmap_skpicture_content_layer_updater.h', | 19 'bitmap_skpicture_content_layer_updater.h', |
18 'caching_bitmap_content_layer_updater.cc', | 20 'caching_bitmap_content_layer_updater.cc', |
19 'caching_bitmap_content_layer_updater.h', | 21 'caching_bitmap_content_layer_updater.h', |
20 'checkerboard_draw_quad.cc', | 22 'checkerboard_draw_quad.cc', |
21 'checkerboard_draw_quad.h', | 23 'checkerboard_draw_quad.h', |
22 'completion_event.h', | 24 'completion_event.h', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'io_surface_layer.cc', | 87 'io_surface_layer.cc', |
86 'io_surface_layer.h', | 88 'io_surface_layer.h', |
87 'io_surface_layer_impl.cc', | 89 'io_surface_layer_impl.cc', |
88 'io_surface_layer_impl.h', | 90 'io_surface_layer_impl.h', |
89 'keyframed_animation_curve.cc', | 91 'keyframed_animation_curve.cc', |
90 'keyframed_animation_curve.h', | 92 'keyframed_animation_curve.h', |
91 'layer.cc', | 93 'layer.cc', |
92 'layer.h', | 94 'layer.h', |
93 'layer_animation_controller.cc', | 95 'layer_animation_controller.cc', |
94 'layer_animation_controller.h', | 96 'layer_animation_controller.h', |
95 'layer_animation_observer.h', | 97 'layer_animation_event_observer.h', |
| 98 'layer_animation_value_observer.h', |
96 'layer_impl.cc', | 99 'layer_impl.cc', |
97 'layer_impl.h', | 100 'layer_impl.h', |
98 'layer_iterator.cc', | 101 'layer_iterator.cc', |
99 'layer_iterator.h', | 102 'layer_iterator.h', |
100 'layer_painter.h', | 103 'layer_painter.h', |
101 'layer_quad.cc', | 104 'layer_quad.cc', |
102 'layer_quad.h', | 105 'layer_quad.h', |
103 'layer_sorter.cc', | 106 'layer_sorter.cc', |
104 'layer_sorter.h', | 107 'layer_sorter.h', |
105 'layer_tiling_data.cc', | 108 'layer_tiling_data.cc', |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 ], | 325 ], |
323 'all_dependent_settings': { | 326 'all_dependent_settings': { |
324 'include_dirs': [ | 327 'include_dirs': [ |
325 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls | 328 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls |
326 '<(webkit_src_dir)/Source/Platform/chromium' | 329 '<(webkit_src_dir)/Source/Platform/chromium' |
327 ] | 330 ] |
328 } | 331 } |
329 }, | 332 }, |
330 ], | 333 ], |
331 } | 334 } |
OLD | NEW |