| 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 '../skia/skia.gyp:skia', | 8 '../skia/skia.gyp:skia', |
| 9 '../ui/gl/gl.gyp:gl', | 9 '../ui/gl/gl.gyp:gl', |
| 10 ], | 10 ], |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 ], | 41 ], |
| 42 'link_settings': { | 42 'link_settings': { |
| 43 'libraries': [ | 43 'libraries': [ |
| 44 '-lsetupapi.lib', | 44 '-lsetupapi.lib', |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 }], | 47 }], |
| 48 ['OS=="win" and directxsdk_exists=="True"', { | 48 ['OS=="win" and directxsdk_exists=="True"', { |
| 49 'actions': [ | 49 'actions': [ |
| 50 { | 50 { |
| 51 'action_name': 'extract_d3dx9', | |
| 52 'variables': { | |
| 53 'input': 'Jun2010_d3dx9_43_x86.cab', | |
| 54 'output': 'd3dx9_43.dll', | |
| 55 }, | |
| 56 'inputs': [ | |
| 57 '../third_party/directxsdk/files/Redist/<(input)', | |
| 58 ], | |
| 59 'outputs': [ | |
| 60 '<(PRODUCT_DIR)/<(output)', | |
| 61 ], | |
| 62 'action': [ | |
| 63 'python', | |
| 64 '../build/extract_from_cab.py', | |
| 65 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', | |
| 66 '<(output)', | |
| 67 '<(PRODUCT_DIR)', | |
| 68 ], | |
| 69 }, | |
| 70 { | |
| 71 'action_name': 'extract_d3dcompiler', | 51 'action_name': 'extract_d3dcompiler', |
| 72 'variables': { | 52 'variables': { |
| 73 'input': 'Jun2010_D3DCompiler_43_x86.cab', | 53 'input': 'Jun2010_D3DCompiler_43_x86.cab', |
| 74 'output': 'D3DCompiler_43.dll', | 54 'output': 'D3DCompiler_43.dll', |
| 75 }, | 55 }, |
| 76 'inputs': [ | 56 'inputs': [ |
| 77 '../third_party/directxsdk/files/Redist/<(input)', | 57 '../third_party/directxsdk/files/Redist/<(input)', |
| 78 ], | 58 ], |
| 79 'outputs': [ | 59 'outputs': [ |
| 80 '<(PRODUCT_DIR)/<(output)', | 60 '<(PRODUCT_DIR)/<(output)', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 106 '<(DEPTH)/third_party/openmax/il', | 86 '<(DEPTH)/third_party/openmax/il', |
| 107 ], | 87 ], |
| 108 }], | 88 }], |
| 109 ['target_arch!="arm" and chromeos == 1', { | 89 ['target_arch!="arm" and chromeos == 1', { |
| 110 'include_dirs': [ | 90 'include_dirs': [ |
| 111 '<(DEPTH)/third_party/libva', | 91 '<(DEPTH)/third_party/libva', |
| 112 ], | 92 ], |
| 113 }], | 93 }], |
| 114 ], | 94 ], |
| 115 } | 95 } |
| OLD | NEW |