Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: content/content_common.gypi

Issue 22262003: Fix Win64 DirectX redistributables (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | content/content_gpu.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | content/content_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698