OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |