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

Side by Side Diff: content/content_gpu.gypi

Issue 11737027: Remove dependency on d3dx9_43.dll. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « content/content_common.gypi ('k') | ui/gl/gl_implementation_win.cc » ('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 '../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
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
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 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | ui/gl/gl_implementation_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698