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

Side by Side Diff: content/content_common.gypi

Issue 8774023: Add xinput1_3.dll redist to final package. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: lf endings on chrome.release Created 9 years 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
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | 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) 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
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 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698