| 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 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
| 9 '../media/media.gyp:media', | 9 '../media/media.gyp:media', |
| 10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 ], | 544 ], |
| 545 'include_dirs': [ | 545 'include_dirs': [ |
| 546 '<(DEPTH)/third_party/khronos', | 546 '<(DEPTH)/third_party/khronos', |
| 547 ], | 547 ], |
| 548 }], | 548 }], |
| 549 ['OS=="win" and directxsdk_exists=="True"', { | 549 ['OS=="win" and directxsdk_exists=="True"', { |
| 550 'actions': [ | 550 'actions': [ |
| 551 { | 551 { |
| 552 'action_name': 'extract_xinput', | 552 'action_name': 'extract_xinput', |
| 553 'variables': { | 553 'variables': { |
| 554 'input': 'APR2007_xinput_x86.cab', | 554 'input': 'APR2007_xinput_<(winsdk_arch).cab', |
| 555 'output': 'xinput1_3.dll', | 555 'output': 'xinput1_3.dll', |
| 556 }, | 556 }, |
| 557 'inputs': [ | 557 'inputs': [ |
| 558 '../third_party/directxsdk/files/Redist/<(input)', | 558 '../third_party/directxsdk/files/Redist/<(input)', |
| 559 ], | 559 ], |
| 560 'outputs': [ | 560 'outputs': [ |
| 561 '<(PRODUCT_DIR)/<(output)', | 561 '<(PRODUCT_DIR)/<(output)', |
| 562 ], | 562 ], |
| 563 'action': [ | 563 'action': [ |
| 564 'python', | 564 'python', |
| 565 '../build/extract_from_cab.py', | 565 '../build/extract_from_cab.py', |
| 566 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | 566 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
| 567 '<(output)', | 567 '<(output)', |
| 568 '<(PRODUCT_DIR)', | 568 '<(PRODUCT_DIR)', |
| 569 ], | 569 ], |
| 570 'msvs_cygwin_shell': 1, | 570 'msvs_cygwin_shell': 1, |
| 571 }, | 571 }, |
| 572 ] | 572 ] |
| 573 }], | 573 }], |
| 574 ], | 574 ], |
| 575 } | 575 } |
| OLD | NEW |