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