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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'resources/texture_mailbox.cc', | 300 'resources/texture_mailbox.cc', |
301 'resources/texture_mailbox.h', | 301 'resources/texture_mailbox.h', |
302 'resources/tile.cc', | 302 'resources/tile.cc', |
303 'resources/tile.h', | 303 'resources/tile.h', |
304 'resources/tile_manager.cc', | 304 'resources/tile_manager.cc', |
305 'resources/tile_manager.h', | 305 'resources/tile_manager.h', |
306 'resources/tile_priority.cc', | 306 'resources/tile_priority.cc', |
307 'resources/tile_priority.h', | 307 'resources/tile_priority.h', |
308 'resources/transferable_resource.cc', | 308 'resources/transferable_resource.cc', |
309 'resources/transferable_resource.h', | 309 'resources/transferable_resource.h', |
| 310 'resources/ui_resource_bitmap.cc', |
| 311 'resources/ui_resource_bitmap.h', |
| 312 'resources/ui_resource_manager_client.h', |
310 'resources/video_resource_updater.cc', | 313 'resources/video_resource_updater.cc', |
311 'resources/video_resource_updater.h', | 314 'resources/video_resource_updater.h', |
312 'resources/worker_pool.cc', | 315 'resources/worker_pool.cc', |
313 'resources/worker_pool.h', | 316 'resources/worker_pool.h', |
314 'scheduler/delay_based_time_source.cc', | 317 'scheduler/delay_based_time_source.cc', |
315 'scheduler/delay_based_time_source.h', | 318 'scheduler/delay_based_time_source.h', |
316 'scheduler/frame_rate_controller.cc', | 319 'scheduler/frame_rate_controller.cc', |
317 'scheduler/frame_rate_controller.h', | 320 'scheduler/frame_rate_controller.h', |
318 'scheduler/rate_limiter.cc', | 321 'scheduler/rate_limiter.cc', |
319 'scheduler/rate_limiter.h', | 322 'scheduler/rate_limiter.h', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 'CC_IMPLEMENTATION=1', | 378 'CC_IMPLEMENTATION=1', |
376 ], | 379 ], |
377 'sources': [ | 380 'sources': [ |
378 '<@(cc_source_files)', | 381 '<@(cc_source_files)', |
379 ], | 382 ], |
380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 383 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
381 'msvs_disabled_warnings': [ 4267, ], | 384 'msvs_disabled_warnings': [ 4267, ], |
382 }, | 385 }, |
383 ], | 386 ], |
384 } | 387 } |
OLD | NEW |