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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 '<(DEPTH)/third_party/angle/include', | 316 '<(DEPTH)/third_party/angle/include', |
317 '<(DEPTH)/third_party/openmax/il', | 317 '<(DEPTH)/third_party/openmax/il', |
318 ], | 318 ], |
319 'link_settings': { | 319 'link_settings': { |
320 'libraries': [ | 320 'libraries': [ |
321 '-lEGL', | 321 '-lEGL', |
322 '-lGLESv2', | 322 '-lGLESv2', |
323 ], | 323 ], |
324 }, | 324 }, |
325 }], | 325 }], |
| 326 ['OS=="win" and directxsdk_exists=="True"', { |
| 327 'actions': [ |
| 328 { |
| 329 'action_name': 'extract_xinput', |
| 330 'variables': { |
| 331 'input': 'APR2007_xinput_x86.cab', |
| 332 'output': 'xinput1_3.dll', |
| 333 }, |
| 334 'inputs': [ |
| 335 '../third_party/directxsdk/files/Redist/<(input)', |
| 336 ], |
| 337 'outputs': [ |
| 338 '<(PRODUCT_DIR)/<(output)', |
| 339 ], |
| 340 'action': [ |
| 341 'python', |
| 342 '../build/extract_from_cab.py', |
| 343 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', |
| 344 '<(output)', |
| 345 '<(PRODUCT_DIR)', |
| 346 ], |
| 347 }, |
| 348 ] |
| 349 }] |
326 ], | 350 ], |
327 } | 351 } |
OLD | NEW |