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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
9 '../gpu/gpu.gyp:gles2_implementation', | 9 '../gpu/gpu.gyp:gles2_implementation', |
10 '../gpu/gpu.gyp:gpu_ipc', | 10 '../gpu/gpu.gyp:gpu_ipc', |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
380 '<(DEPTH)/third_party/angle/include', | 380 '<(DEPTH)/third_party/angle/include', |
381 '<(DEPTH)/third_party/openmax/il', | 381 '<(DEPTH)/third_party/openmax/il', |
382 ], | 382 ], |
383 'link_settings': { | 383 'link_settings': { |
384 'libraries': [ | 384 'libraries': [ |
385 '-lEGL', | 385 '-lEGL', |
386 '-lGLESv2', | 386 '-lGLESv2', |
387 ], | 387 ], |
388 }, | 388 }, |
389 }], | 389 }], |
390 ['chromeos == 1', { | |
391 'dependencies': [ | |
392 '../media/media.gyp:media', | |
Ami GONE FROM CHROMIUM
2012/05/03 23:22:53
Unnecessary
Pawel Osciak
2012/05/06 17:49:19
Done.
| |
393 ], | |
394 'sources': [ | |
395 'common/gpu/media/h264_dpb.cc', | |
396 'common/gpu/media/h264_dpb.h', | |
397 'common/gpu/media/vaapi_h264_decoder.cc', | |
398 'common/gpu/media/vaapi_h264_decoder.h', | |
399 'common/gpu/media/vaapi_video_decode_accelerator.cc', | |
400 'common/gpu/media/vaapi_video_decode_accelerator.h', | |
401 ], | |
402 'include_dirs': [ | |
403 '<(DEPTH)/third_party/libva', | |
Ami GONE FROM CHROMIUM
2012/05/03 23:22:53
Is this in the tree now?
| |
404 ], | |
405 }], | |
390 ['OS=="win"', { | 406 ['OS=="win"', { |
391 'dependencies': [ | 407 'dependencies': [ |
392 '../media/media.gyp:media', | 408 '../media/media.gyp:media', |
393 '../ui/gfx/gl/gl.gyp:gl', | 409 '../ui/gfx/gl/gl.gyp:gl', |
394 ], | 410 ], |
395 'link_settings': { | 411 'link_settings': { |
396 'libraries': [ | 412 'libraries': [ |
397 '-ld3d9.lib', | 413 '-ld3d9.lib', |
398 '-ld3dx9.lib', | 414 '-ld3dx9.lib', |
399 '-ldxva2.lib', | 415 '-ldxva2.lib', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
442 '../build/extract_from_cab.py', | 458 '../build/extract_from_cab.py', |
443 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 459 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
444 '<(output)', | 460 '<(output)', |
445 '<(PRODUCT_DIR)', | 461 '<(PRODUCT_DIR)', |
446 ], | 462 ], |
447 }, | 463 }, |
448 ] | 464 ] |
449 }] | 465 }] |
450 ], | 466 ], |
451 } | 467 } |
OLD | NEW |