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

Unified Diff: build/linux/unbundle/ffmpeg.gyp

Issue 14746004: Add an unbundled ffmpeg.gyp file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « no previous file | build/linux/unbundle/replace_gyp_files.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/unbundle/ffmpeg.gyp
diff --git a/build/linux/unbundle/sqlite.gyp b/build/linux/unbundle/ffmpeg.gyp
similarity index 55%
copy from build/linux/unbundle/sqlite.gyp
copy to build/linux/unbundle/ffmpeg.gyp
index 918da92801890c6fec27d2d3ea448335bb78db03..dfaaf0aee83668764b07c97846a035c933c4110d 100644
--- a/build/linux/unbundle/sqlite.gyp
+++ b/build/linux/unbundle/ffmpeg.gyp
@@ -5,22 +5,23 @@
{
'targets': [
{
- 'target_name': 'sqlite',
+ 'target_name': 'ffmpeg',
'type': 'none',
'direct_dependent_settings': {
'cflags': [
- '<!@(pkg-config --cflags sqlite3)',
+ '<!@(pkg-config --cflags libavcodec libavformat libavutil)',
],
'defines': [
- 'USE_SYSTEM_SQLITE',
+ '__STDC_CONSTANT_MACROS',
+ 'USE_SYSTEM_FFMPEG',
],
},
'link_settings': {
'ldflags': [
- '<!@(pkg-config --libs-only-L --libs-only-other sqlite3)',
+ '<!@(pkg-config --libs-only-L --libs-only-other libavcodec libavformat libavutil)',
],
'libraries': [
- '<!@(pkg-config --libs-only-l sqlite3)',
+ '<!@(pkg-config --libs-only-l libavcodec libavformat libavutil)',
],
},
},
« no previous file with comments | « no previous file | build/linux/unbundle/replace_gyp_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698