chromium-src-build/linux/unbundle
Pawel Hajdan, Jr 25bc371334 Unbundle opus
This CL makes it easier for Linux distribution packagers to use system
opus codec library, by providing a drop-in replacement GN file.

build/linux/unbundle is a separate directory tree, so that regular
Chromium developers don't need to worry about this configuration.

Please see https://cs.chromium.org/chromium/src/build/linux/unbundle/README?dr
for more context.

BUG=551343
R=thestig@chromium.org

Review-Url: https://codereview.chromium.org/2838423002 .
Cr-Original-Commit-Position: refs/heads/master@{#467451}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 5e44d52a673058600ca83f0163cded8405c5a8bd
2017-04-26 20:57:44 +00:00
..
README Update build/linux/unbundle/README 2017-03-31 19:44:05 +00:00
ffmpeg.gn build/linux/unbundle: make ffmpeg.gn define USE_SYSTEM_FFMPEG 2017-04-12 21:06:11 +00:00
flac.gn unbundle: add GN files for flac, harfbuzz-ng, and libwebp 2016-05-11 08:36:07 +00:00
harfbuzz-ng.gn unbundle: add GN files for flac, harfbuzz-ng, and libwebp 2016-05-11 08:36:07 +00:00
icu.gn Fix startup with system ICU 2016-09-15 21:45:46 +00:00
libdrm.gn Unbundle libdrm 2017-03-30 14:31:51 +00:00
libevent.gn unbundle: add GN files for ffmpeg, libevent, libxslt, snappy, and yasm 2016-05-12 08:21:36 +00:00
libjpeg.gn Fix build with system libjpeg 2017-04-12 21:09:59 +00:00
libpng.gn unbundle: add GN files for libpng, libvpx, and re2 2016-07-05 16:01:52 +00:00
libvpx.gn unbundle: add GN files for libpng, libvpx, and re2 2016-07-05 16:01:52 +00:00
libwebp.gn unbundle: add GN files for flac, harfbuzz-ng, and libwebp 2016-05-11 08:36:07 +00:00
libxml.gn unbundle: add replace_gn_files.py and unbundled GN file for libxml 2016-04-06 09:17:56 +00:00
libxslt.gn unbundle: add GN files for ffmpeg, libevent, libxslt, snappy, and yasm 2016-05-12 08:21:36 +00:00
opus.gn Unbundle opus 2017-04-26 20:57:44 +00:00
re2.gn unbundle: add GN files for libpng, libvpx, and re2 2016-07-05 16:01:52 +00:00
remove_bundled_libraries.py remove_bundled_libraries.py: preserve .gn and .gni files 2015-11-06 14:37:07 +00:00
replace_gn_files.py Unbundle opus 2017-04-26 20:57:44 +00:00
snappy.gn unbundle: add GN files for ffmpeg, libevent, libxslt, snappy, and yasm 2016-05-12 08:21:36 +00:00
yasm.gn Shrink chrome_elf.dll by switching source_sets to static_library 2016-07-01 17:57:31 +00:00
zlib.gn unbundle: fix build with system zlib 2016-07-07 10:54:26 +00:00

README

This directory contains files that make it possible for Linux
distributions to build Chromium using system libraries and exclude the
source code for Chromium's bundled copies of system libraries in a
consistent manner. Nothing here is used in normal developer builds.


For more info on the Linux distros' philosophy on bundling system
libraries and why this exists, please read the following:

 - https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
 - https://wiki.gentoo.org/wiki/Why_not_bundle_dependencies
 - http://www.debian.org/doc/debian-policy/ch-source.html#s-embeddedfiles

For more Chromium-specific context please read
http://spot.livejournal.com/312320.html .

Additional resources which might provide even more context:

  - http://events.linuxfoundation.org/sites/events/files/slides/LinuxCon%202014%20Slides_0.pdf
  - https://lwn.net/Articles/619158/


This directory is provided in the source tree so one can follow the
above guidelines without having to download additional tools and worry
about having the right version of the tool. It is a compromise solution
which takes into account Chromium developers who want to avoid the
perceived burden of more conditional code in build files, and
expectations of Open Source community, where using system-provided
libraries is the norm.

Usage:

1. remove_bundled_libraries.py <preserved-directories>

   For example: remove_bundled_libraries.py third_party/mesa

   The script scans sources looking for third_party directories.
   Everything that is not explicitly preserved is removed (except for
   GYP/GN build files), and the script fails if any directory passed on
   command line does not exist (to ensure list is kept up to date).

   This is intended to be used on source code extracted from a tarball,
   not on a git repository.

   NOTE: by default this will not remove anything (for safety). Pass
   the --do-remove flag to actually remove files.

2. replace_gn_files.py --system-libraries lib...

   This swaps out a normal library GN build file that is intended for
   use with a bundled library for a build file that is set up to use
   the system library. While some build files have use_system_libfoo
   build flags, using unbundled build files has the advantage that Linux
   distros can build Chromium without having to specify many additional
   build flags.

   For example: replace_gn_files.py --system-libraries libxml