Fix Win64 DirectX redistributables

Adds a gyp variable to simplify WINSDK path strings,
and grabs the x64 files rather than x86.

BUG=268525,267893

Review URL: https://chromiumcodereview.appspot.com/22262003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@215814 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
jschuh@chromium.org 2013-08-06 06:09:43 +00:00
Родитель 046748b999
Коммит a8f1c98914
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1411,6 +1411,12 @@
}], # OS=="mac" or OS=="ios"
['OS=="win"', {
'conditions': [
# This is the architecture convention used in WinSDK paths.
['target_arch=="ia32"', {
'winsdk_arch%': 'x86',
},{
'winsdk_arch%': '<(target_arch)',
}],
['component=="shared_library"', {
'win_use_allocator_shim%': 0,
}],