| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 'scheduler/rate_limiter.h', | 308 'scheduler/rate_limiter.h', |
| 309 'scheduler/scheduler.cc', | 309 'scheduler/scheduler.cc', |
| 310 'scheduler/scheduler.h', | 310 'scheduler/scheduler.h', |
| 311 'scheduler/scheduler_settings.cc', | 311 'scheduler/scheduler_settings.cc', |
| 312 'scheduler/scheduler_settings.h', | 312 'scheduler/scheduler_settings.h', |
| 313 'scheduler/scheduler_state_machine.cc', | 313 'scheduler/scheduler_state_machine.cc', |
| 314 'scheduler/scheduler_state_machine.h', | 314 'scheduler/scheduler_state_machine.h', |
| 315 'scheduler/texture_uploader.cc', | 315 'scheduler/texture_uploader.cc', |
| 316 'scheduler/texture_uploader.h', | 316 'scheduler/texture_uploader.h', |
| 317 'scheduler/time_source.h', | 317 'scheduler/time_source.h', |
| 318 'scheduler/vsync_time_source.cc', | |
| 319 'scheduler/vsync_time_source.h', | |
| 320 'trees/damage_tracker.cc', | 318 'trees/damage_tracker.cc', |
| 321 'trees/damage_tracker.h', | 319 'trees/damage_tracker.h', |
| 322 'trees/layer_sorter.cc', | 320 'trees/layer_sorter.cc', |
| 323 'trees/layer_sorter.h', | 321 'trees/layer_sorter.h', |
| 324 'trees/layer_tree_host.cc', | 322 'trees/layer_tree_host.cc', |
| 325 'trees/layer_tree_host.h', | 323 'trees/layer_tree_host.h', |
| 326 'trees/layer_tree_host_client.h', | 324 'trees/layer_tree_host_client.h', |
| 327 'trees/layer_tree_host_common.cc', | 325 'trees/layer_tree_host_common.cc', |
| 328 'trees/layer_tree_host_common.h', | 326 'trees/layer_tree_host_common.h', |
| 329 'trees/layer_tree_host_impl.cc', | 327 'trees/layer_tree_host_impl.cc', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 'CC_IMPLEMENTATION=1', | 363 'CC_IMPLEMENTATION=1', |
| 366 ], | 364 ], |
| 367 'sources': [ | 365 'sources': [ |
| 368 '<@(cc_source_files)', | 366 '<@(cc_source_files)', |
| 369 ], | 367 ], |
| 370 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 368 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 371 'msvs_disabled_warnings': [ 4267, ], | 369 'msvs_disabled_warnings': [ 4267, ], |
| 372 }, | 370 }, |
| 373 ], | 371 ], |
| 374 } | 372 } |
| OLD | NEW |