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

Unified Diff: third_party/ffmpeg/ffmpeg.gyp

Issue 149165: Checking in Windows FFmpeg binaries for Chromium. (Closed)
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/ffmpeg/binaries/chromium/pthreadGC2.dll ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ffmpeg/ffmpeg.gyp
diff --git a/third_party/ffmpeg/ffmpeg.gyp b/third_party/ffmpeg/ffmpeg.gyp
index 0d50a5d62f5d922d3b96a3af9cb1a2564b7eced4..c6ad1a89574fe8d2e910118cc7c3563486486979 100755
--- a/third_party/ffmpeg/ffmpeg.gyp
+++ b/third_party/ffmpeg/ffmpeg.gyp
@@ -170,6 +170,8 @@
],
},
{
+ # We prefer the Chrome binaries over the Chromium ones, which will get
+ # overwritten due to the order that the binaries are copied.
awong 2009/07/03 01:52:05 So we decided not to use the branding varaible to
'target_name': 'ffmpeg_binaries',
'type': 'none',
'msvs_guid': '4E4070E1-EFD9-4EF1-8634-3960956F6F10',
@@ -177,10 +179,14 @@
['OS=="win"', {
'variables': {
'source_files': [
- 'binaries/avcodec-52.dll',
- 'binaries/avformat-52.dll',
- 'binaries/avutil-50.dll',
- 'binaries/pthreadGC2.dll',
+ 'binaries/chromium/avcodec-52.dll',
+ 'binaries/chromium/avformat-52.dll',
+ 'binaries/chromium/avutil-50.dll',
+ 'binaries/chromium/pthreadGC2.dll',
+ 'binaries/chrome/avcodec-52.dll',
+ 'binaries/chrome/avformat-52.dll',
+ 'binaries/chrome/avutil-50.dll',
+ 'binaries/chrome/pthreadGC2.dll',
],
'output_files': [
'<(PRODUCT_DIR)/avcodec-52.dll',
@@ -193,9 +199,12 @@
}], ['OS=="linux"', {
'variables': {
'source_files': [
- 'binaries/libavcodec.so.52',
- 'binaries/libavformat.so.52',
- 'binaries/libavutil.so.50',
+ 'binaries/chromium/libavcodec.so.52',
+ 'binaries/chromium/libavformat.so.52',
+ 'binaries/chromium/libavutil.so.50',
+ 'binaries/chrome/libavcodec.so.52',
+ 'binaries/chrome/libavformat.so.52',
+ 'binaries/chrome/libavutil.so.50',
],
'output_files': [
'<(PRODUCT_DIR)/libavcodec.so.52',
@@ -206,9 +215,12 @@
}], ['OS=="mac"', {
'variables': {
'source_files': [
- 'binaries/libavcodec.52.dylib',
- 'binaries/libavformat.52.dylib',
- 'binaries/libavutil.50.dylib',
+ 'binaries/chromium/libavcodec.52.dylib',
+ 'binaries/chromium/libavformat.52.dylib',
+ 'binaries/chromium/libavutil.50.dylib',
+ 'binaries/chrome/libavcodec.52.dylib',
+ 'binaries/chrome/libavformat.52.dylib',
+ 'binaries/chrome/libavutil.50.dylib',
],
'output_files': [
'<(PRODUCT_DIR)/libavcodec.52.dylib',
« no previous file with comments | « third_party/ffmpeg/binaries/chromium/pthreadGC2.dll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698