| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 'trees/tree_synchronizer.cc', | 327 'trees/tree_synchronizer.cc', |
| 328 'trees/tree_synchronizer.h', | 328 'trees/tree_synchronizer.h', |
| 329 'base/util.h', | 329 'base/util.h', |
| 330 'layers/video_frame_provider.h', | 330 'layers/video_frame_provider.h', |
| 331 'layers/video_frame_provider_client_impl.cc', | 331 'layers/video_frame_provider_client_impl.cc', |
| 332 'layers/video_frame_provider_client_impl.h', | 332 'layers/video_frame_provider_client_impl.h', |
| 333 'layers/video_layer.cc', | 333 'layers/video_layer.cc', |
| 334 'layers/video_layer.h', | 334 'layers/video_layer.h', |
| 335 'layers/video_layer_impl.cc', | 335 'layers/video_layer_impl.cc', |
| 336 'layers/video_layer_impl.h', | 336 'layers/video_layer_impl.h', |
| 337 'resources/video_resource_updater.cc', |
| 338 'resources/video_resource_updater.h', |
| 337 'scheduler/vsync_time_source.cc', | 339 'scheduler/vsync_time_source.cc', |
| 338 'scheduler/vsync_time_source.h', | 340 'scheduler/vsync_time_source.h', |
| 339 'base/worker_pool.cc', | 341 'base/worker_pool.cc', |
| 340 'base/worker_pool.h', | 342 'base/worker_pool.h', |
| 341 'quads/yuv_video_draw_quad.cc', | 343 'quads/yuv_video_draw_quad.cc', |
| 342 'quads/yuv_video_draw_quad.h', | 344 'quads/yuv_video_draw_quad.h', |
| 343 ], | 345 ], |
| 344 'conditions': [ | 346 'conditions': [ |
| 345 ['inside_chromium_build==1', { | 347 ['inside_chromium_build==1', { |
| 346 'webkit_src_dir': '<(DEPTH)/third_party/WebKit', | 348 'webkit_src_dir': '<(DEPTH)/third_party/WebKit', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 375 'CC_IMPLEMENTATION=1', | 377 'CC_IMPLEMENTATION=1', |
| 376 ], | 378 ], |
| 377 'sources': [ | 379 'sources': [ |
| 378 '<@(cc_source_files)', | 380 '<@(cc_source_files)', |
| 379 ], | 381 ], |
| 380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 382 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 381 'msvs_disabled_warnings': [ 4267, ], | 383 'msvs_disabled_warnings': [ 4267, ], |
| 382 }, | 384 }, |
| 383 ], | 385 ], |
| 384 } | 386 } |
| OLD | NEW |