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.cc', | 8 'animation.cc', |
9 'animation.h', | 9 '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_id_provider.cc', |
| 14 'animation_id_provider.h', |
13 'animation_registrar.cc', | 15 'animation_registrar.cc', |
14 'animation_registrar.h', | 16 'animation_registrar.h', |
15 'append_quads_data.h', | 17 'append_quads_data.h', |
16 'bitmap_content_layer_updater.cc', | 18 'bitmap_content_layer_updater.cc', |
17 'bitmap_content_layer_updater.h', | 19 'bitmap_content_layer_updater.h', |
18 'bitmap_skpicture_content_layer_updater.cc', | 20 'bitmap_skpicture_content_layer_updater.cc', |
19 'bitmap_skpicture_content_layer_updater.h', | 21 'bitmap_skpicture_content_layer_updater.h', |
20 'caching_bitmap_content_layer_updater.cc', | 22 'caching_bitmap_content_layer_updater.cc', |
21 'caching_bitmap_content_layer_updater.h', | 23 'caching_bitmap_content_layer_updater.h', |
22 'checkerboard_draw_quad.cc', | 24 'checkerboard_draw_quad.cc', |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 'include_dirs': [ | 354 'include_dirs': [ |
353 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls | 355 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls |
354 '<(webkit_src_dir)/Source/Platform/chromium' | 356 '<(webkit_src_dir)/Source/Platform/chromium' |
355 ] | 357 ] |
356 }, | 358 }, |
357 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 359 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
358 'msvs_disabled_warnings': [ 4267, ], | 360 'msvs_disabled_warnings': [ 4267, ], |
359 }, | 361 }, |
360 ], | 362 ], |
361 } | 363 } |
OLD | NEW |