| 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', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 'video_layer.cc', | 304 'video_layer.cc', |
| 305 'video_layer.h', | 305 'video_layer.h', |
| 306 'video_layer_impl.cc', | 306 'video_layer_impl.cc', |
| 307 'video_layer_impl.h', | 307 'video_layer_impl.h', |
| 308 'vsync_time_source.cc', | 308 'vsync_time_source.cc', |
| 309 'vsync_time_source.h', | 309 'vsync_time_source.h', |
| 310 'worker_pool.cc', | 310 'worker_pool.cc', |
| 311 'worker_pool.h', | 311 'worker_pool.h', |
| 312 'yuv_video_draw_quad.cc', | 312 'yuv_video_draw_quad.cc', |
| 313 'yuv_video_draw_quad.h', | 313 'yuv_video_draw_quad.h', |
| 314 'yuva_video_draw_quad.cc', |
| 315 'yuva_video_draw_quad.h', |
| 314 ], | 316 ], |
| 315 'conditions': [ | 317 'conditions': [ |
| 316 ['inside_chromium_build==1', { | 318 ['inside_chromium_build==1', { |
| 317 'webkit_src_dir': '<(DEPTH)/third_party/WebKit', | 319 'webkit_src_dir': '<(DEPTH)/third_party/WebKit', |
| 318 }, { | 320 }, { |
| 319 'webkit_src_dir': '<(DEPTH)/../../..', | 321 'webkit_src_dir': '<(DEPTH)/../../..', |
| 320 }], | 322 }], |
| 321 ], | 323 ], |
| 322 }, | 324 }, |
| 323 'conditions': [ | 325 'conditions': [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 350 'include_dirs': [ | 352 'include_dirs': [ |
| 351 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls | 353 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls |
| 352 '<(webkit_src_dir)/Source/Platform/chromium' | 354 '<(webkit_src_dir)/Source/Platform/chromium' |
| 353 ] | 355 ] |
| 354 }, | 356 }, |
| 355 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 357 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 356 'msvs_disabled_warnings': [ 4267, ], | 358 'msvs_disabled_warnings': [ 4267, ], |
| 357 }, | 359 }, |
| 358 ], | 360 ], |
| 359 } | 361 } |
| OLD | NEW |