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

Side by Side Diff: third_party/ffmpeg/ffmpeg.gyp

Issue 125059: Change delayload attribute from string to list in gyp files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../../build/common.gypi', 7 '../../build/common.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ], 81 ],
82 'link_settings': { 82 'link_settings': {
83 'libraries': [ 83 'libraries': [
84 '<(output_dir)/avcodec-52.lib', 84 '<(output_dir)/avcodec-52.lib',
85 '<(output_dir)/avformat-52.lib', 85 '<(output_dir)/avformat-52.lib',
86 '<(output_dir)/avutil-50.lib', 86 '<(output_dir)/avutil-50.lib',
87 ], 87 ],
88 }, 88 },
89 'msvs_settings': { 89 'msvs_settings': {
90 'VCLinkerTool': { 90 'VCLinkerTool': {
91 'DelayLoadDLLs': 'avcodec-52.dll,avformat-52.dll,avutil-50.dll ', 91 'DelayLoadDLLs': [
92 'avcodec-52.dll',
93 'avformat-52.dll',
94 'avutil-50.dll',
95 » » ],
92 }, 96 },
93 }, 97 },
94 }, 98 },
95 'rules': [ 99 'rules': [
96 { 100 {
97 'rule_name': 'generate_libs', 101 'rule_name': 'generate_libs',
98 'extension': 'sigs', 102 'extension': 'sigs',
99 'inputs': [ 103 'inputs': [
100 '<(generate_stubs_script)', 104 '<(generate_stubs_script)',
101 '<@(sig_files)', 105 '<@(sig_files)',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 ], 191 ],
188 'action': ['./copy_binaries.sh', '"<@(RULE_INPUT_PATH)"', '"<@(PRO DUCT_DIR)/<@(RULE_INPUT_NAME)"'], 192 'action': ['./copy_binaries.sh', '"<@(RULE_INPUT_PATH)"', '"<@(PRO DUCT_DIR)/<@(RULE_INPUT_NAME)"'],
189 'message': 'Copying binaries...', 193 'message': 'Copying binaries...',
190 }, 194 },
191 ], 195 ],
192 }], 196 }],
193 ], 197 ],
194 }, 198 },
195 ], 199 ],
196 } 200 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698