diff options
author | chcunningham <chcunningham@chromium.org> | 2015-06-04 12:55:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-04 19:57:13 +0000 |
commit | bfef6d6ba82b172ac0e48c80d9ccf1a1ca0ea5c5 (patch) | |
tree | e44e230c1eb6a49d331c006de1942e25bf921590 /chrome/installer/linux | |
parent | 3e11c986844af1cdda66e72e874763437ef426a0 (diff) | |
download | chromium_src-bfef6d6ba82b172ac0e48c80d9ccf1a1ca0ea5c5.zip chromium_src-bfef6d6ba82b172ac0e48c80d9ccf1a1ca0ea5c5.tar.gz chromium_src-bfef6d6ba82b172ac0e48c80d9ccf1a1ca0ea5c5.tar.bz2 |
Chromium changes to statically link ffmpeg.
Motivations:
1. Eliminates a large number of windows crashes hit while loading the DLL (see bugs)
2. Reducing the size of binary (about 400KB on linux, about 265KB on 32bit windows) due to dead-code elimination
3. Simplifying media library initialization (Remove bool-ness, it just works)
Licensing:
We've audited all the licenses for the files we actually use and have the green light from legal as long as we include the license text in the credits.
BUG=435455, 429131, 441908
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1141703002
Cr-Commit-Position: refs/heads/master@{#332891}
Diffstat (limited to 'chrome/installer/linux')
-rw-r--r-- | chrome/installer/linux/common/installer.include | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include index 14171f7..7f4ef77 100644 --- a/chrome/installer/linux/common/installer.include +++ b/chrome/installer/linux/common/installer.include @@ -156,9 +156,6 @@ stage_install_common() { find "${STAGEDIR}/${INSTALLDIR}/locales" -type f -exec chmod 644 '{}' \; find "${STAGEDIR}/${INSTALLDIR}/locales" -type d -exec chmod 755 '{}' \; - # ffmpeg libs - install -m 644 -s "${BUILDDIR}/libffmpegsumo.so" "${STAGEDIR}/${INSTALLDIR}/" - # Widevine CDM. if [ -f "${BUILDDIR}/libwidevinecdmadapter.so" ]; then install -m 644 -s "${BUILDDIR}/libwidevinecdmadapter.so" "${STAGEDIR}/${INSTALLDIR}/" |