Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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:gpu_ipc', | 9 '../gpu/gpu.gyp:gpu_ipc', |
| 10 '../ipc/ipc.gyp:ipc', | 10 '../ipc/ipc.gyp:ipc', |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 320 '<(DEPTH)/third_party/angle/include', | 320 '<(DEPTH)/third_party/angle/include', |
| 321 '<(DEPTH)/third_party/openmax/il', | 321 '<(DEPTH)/third_party/openmax/il', |
| 322 ], | 322 ], |
| 323 'link_settings': { | 323 'link_settings': { |
| 324 'libraries': [ | 324 'libraries': [ |
| 325 '-lEGL', | 325 '-lEGL', |
| 326 '-lGLESv2', | 326 '-lGLESv2', |
| 327 ], | 327 ], |
| 328 }, | 328 }, |
| 329 }], | 329 }], |
| 330 ['OS=="win"', { | |
| 331 'dependencies': [ | |
| 332 '../media/media.gyp:media', | |
| 333 '../third_party/angle/src/build_angle.gyp:libEGL', | |
| 334 '../third_party/angle/src/build_angle.gyp:libGLESv2', | |
| 335 ], | |
| 336 'link_settings': { | |
| 337 'libraries': [ | |
| 338 '-ld3d9.lib', | |
| 339 '-ld3dx9.lib', | |
| 340 '-ldxva2.lib', | |
| 341 '-lstrmiids.lib', | |
| 342 '-lmf.lib', | |
| 343 '-lmfplat.lib', | |
| 344 '-lmfuuid.lib', | |
| 345 ], | |
| 346 'msvs_settings': { | |
| 347 'VCLinkerTool': { | |
| 348 'DelayLoadDLLs': [ | |
| 349 'd3d9.dll', | |
| 350 'd3dx9_43.dll', | |
| 351 'dxva2.dll', | |
| 352 'libGLESv2.dll', | |
|
apatrick_chromium
2011/12/21 22:14:34
Per offline discussion, this line can be removed.
| |
| 353 'mf.dll', | |
| 354 'mfplat.dll', | |
| 355 ], | |
| 356 }, | |
| 357 }, | |
| 358 }, | |
| 359 'sources': [ | |
| 360 'common/gpu/media/dxva_video_decode_accelerator.cc', | |
| 361 'common/gpu/media/dxva_video_decode_accelerator.h', | |
| 362 ], | |
| 363 'include_dirs': [ | |
| 364 '<(DEPTH)/third_party/angle/include', | |
| 365 ], | |
| 366 }], | |
| 330 ['OS=="win" and directxsdk_exists=="True"', { | 367 ['OS=="win" and directxsdk_exists=="True"', { |
| 331 'actions': [ | 368 'actions': [ |
| 332 { | 369 { |
| 333 'action_name': 'extract_xinput', | 370 'action_name': 'extract_xinput', |
| 334 'variables': { | 371 'variables': { |
| 335 'input': 'APR2007_xinput_x86.cab', | 372 'input': 'APR2007_xinput_x86.cab', |
| 336 'output': 'xinput1_3.dll', | 373 'output': 'xinput1_3.dll', |
| 337 }, | 374 }, |
| 338 'inputs': [ | 375 'inputs': [ |
| 339 '../third_party/directxsdk/files/Redist/<(input)', | 376 '../third_party/directxsdk/files/Redist/<(input)', |
| 340 ], | 377 ], |
| 341 'outputs': [ | 378 'outputs': [ |
| 342 '<(PRODUCT_DIR)/<(output)', | 379 '<(PRODUCT_DIR)/<(output)', |
| 343 ], | 380 ], |
| 344 'action': [ | 381 'action': [ |
| 345 'python', | 382 'python', |
| 346 '../build/extract_from_cab.py', | 383 '../build/extract_from_cab.py', |
| 347 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 384 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
| 348 '<(output)', | 385 '<(output)', |
| 349 '<(PRODUCT_DIR)', | 386 '<(PRODUCT_DIR)', |
| 350 ], | 387 ], |
| 351 }, | 388 }, |
| 352 ] | 389 ] |
| 353 }] | 390 }] |
| 354 ], | 391 ], |
| 355 } | 392 } |
| OLD | NEW |