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

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

Issue 151070: Fixed typo in ffmpeg.gyp that caused avcodec-52.dll to not get copied. (Closed)
Patch Set: Created 11 years, 5 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
« no previous file with comments | « no previous file | 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 ], 170 ],
171 }, 171 },
172 { 172 {
173 'target_name': 'ffmpeg_binaries', 173 'target_name': 'ffmpeg_binaries',
174 'type': 'none', 174 'type': 'none',
175 'msvs_guid': '4E4070E1-EFD9-4EF1-8634-3960956F6F10', 175 'msvs_guid': '4E4070E1-EFD9-4EF1-8634-3960956F6F10',
176 'conditions': [ 176 'conditions': [
177 ['OS=="win"', { 177 ['OS=="win"', {
178 'variables': { 178 'variables': {
179 'source_files': [ 179 'source_files': [
180 'binaries/avcodeec-52.dll', 180 'binaries/avcodec-52.dll',
181 'binaries/avformat-52.dll', 181 'binaries/avformat-52.dll',
182 'binaries/avutil-50.dll', 182 'binaries/avutil-50.dll',
183 'binaries/pthreadGC2.dll', 183 'binaries/pthreadGC2.dll',
184 ], 184 ],
185 'output_files': [ 185 'output_files': [
186 '<(PRODUCT_DIR)/avcodec-52.dll', 186 '<(PRODUCT_DIR)/avcodec-52.dll',
187 '<(PRODUCT_DIR)/avformat-52.dll', 187 '<(PRODUCT_DIR)/avformat-52.dll',
188 '<(PRODUCT_DIR)/avutil-50.dll', 188 '<(PRODUCT_DIR)/avutil-50.dll',
189 '<(PRODUCT_DIR)/pthreadGC2.dll', 189 '<(PRODUCT_DIR)/pthreadGC2.dll',
190 ], 190 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 './copy_binaries.sh', 233 './copy_binaries.sh',
234 '<@(source_files)', 234 '<@(source_files)',
235 '<(PRODUCT_DIR)/' 235 '<(PRODUCT_DIR)/'
236 ], 236 ],
237 'message': 'Copying FFmpeg binaries...', 237 'message': 'Copying FFmpeg binaries...',
238 }, 238 },
239 ], 239 ],
240 }, 240 },
241 ], 241 ],
242 } 242 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698