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

Unified Diff: chrome/chrome.gyp

Issue 340072: FFmpeg in-tree build for mac. (Closed)
Patch Set: work around link-settings bug. Created 11 years, 1 month 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 | « build/all.gyp ('k') | third_party/ffmpeg/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index de12db98d077c137bea9f61e58fb4926f3fd05dd..aa4d94cd3312bb307e0da49a0963ffae312b8fed 100755
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -5876,6 +5876,15 @@
}],
],
},
+ {
+ 'destination':
+ '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
+ 'files': [
+ # TODO(ajwong): Find a way to share this path with
+ # ffmpeg.gyp so they don't diverge. (BUG=23602)
+ '<(PRODUCT_DIR)/libffmpegsumo.dylib',
+ ],
+ },
],
'conditions': [
['mac_breakpad==1', {
@@ -5918,32 +5927,6 @@
},
],
}], # mac_keystone
- ['branding=="Chrome"', {
- 'copies': [
- {
- 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
- # TODO(ajwong): This, and the parallel chromium stanza
- # below really should find a way to share file paths with
- # ffmpeg.gyp so they don't diverge. (BUG=23602)
- 'files': [
- '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavcodec.52.dylib',
- '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavformat.52.dylib',
- '../third_party/ffmpeg/binaries/chrome/mac/ia32/libavutil.50.dylib',
- ],
- },
- ],
- }, { # else: 'branding!="Chrome"
- 'copies': [
- {
- 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
- 'files': [
- '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavcodec.52.dylib',
- '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavformat.52.dylib',
- '../third_party/ffmpeg/binaries/chromium/mac/ia32/libavutil.50.dylib',
- ],
- },
- ],
- }], # branding
], # conditions
}], # OS=="mac"
], # conditions
« no previous file with comments | « build/all.gyp ('k') | third_party/ffmpeg/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698