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

Unified Diff: build/linux/sysroot_scripts/sysroot-creator-jessie.sh

Issue 1663863003: Add support for Debian/jessie sysroot images (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/sysroot-creator-jessie.sh
diff --git a/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh b/build/linux/sysroot_scripts/sysroot-creator-jessie.sh
similarity index 75%
copy from build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
copy to build/linux/sysroot_scripts/sysroot-creator-jessie.sh
index 08f7fdaccabe192a5a19db98ef25806f467fdbee..d52602f4986b9c94e85fd2c831e512f74ac0aa57 100755
--- a/build/linux/sysroot_scripts/sysroot-creator-wheezy.sh
+++ b/build/linux/sysroot_scripts/sysroot-creator-jessie.sh
@@ -6,17 +6,21 @@
SCRIPT_DIR=$(dirname $0)
DISTRO=debian
-DIST=wheezy
+DIST=jessie
+PACKAGES_EXT=xz
APT_REPO=http://http.us.debian.org/debian
REPO_BASEDIR="${APT_REPO}/dists/${DIST}"
-KEYRING_FILE=/usr/share/keyrings/debian-archive-keyring.gpg
+# gpg keyring file generated using:
+# export KEYS="518E17E1 46925553 2B90D010"
+# gpg --recv-keys $KEYS
+# gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS
+KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg
# Sysroot packages: these are the packages needed to build chrome.
# NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated
# by running this script in GeneratePackageList mode.
DEBIAN_PACKAGES="\
comerr-dev
- gcc-4.6
krb5-multidev
libasound2
libasound2-dev
@@ -25,7 +29,7 @@ DEBIAN_PACKAGES="\
libattr1
libavahi-client3
libavahi-common3
- libbrlapi0.5
+ libbrlapi0.6
libbrlapi-dev
libc6
libc6-dev
@@ -43,7 +47,7 @@ DEBIAN_PACKAGES="\
libdbus-glib-1-2
libdrm2
libdrm-dev
- libdrm-nouveau1a
+ libdrm-nouveau2
libdrm-radeon1
libelf1
libelf-dev
@@ -51,18 +55,19 @@ DEBIAN_PACKAGES="\
libexif-dev
libexpat1
libexpat1-dev
- libffi5
+ libffi6
libffi-dev
libfontconfig1
libfontconfig1-dev
libfreetype6
libfreetype6-dev
+ libgcc-4.8-dev
libgcc1
libgconf-2-4
libgconf2-4
libgconf2-dev
- libgcrypt11
- libgcrypt11-dev
+ libgcrypt20
+ libgcrypt20-dev
libgdk-pixbuf2.0-0
libgdk-pixbuf2.0-dev
libgl1-mesa-dev
@@ -72,10 +77,10 @@ DEBIAN_PACKAGES="\
libglib2.0-dev
libgnome-keyring0
libgnome-keyring-dev
- libgnutls26
- libgnutls-dev
libgnutls-openssl27
- libgnutlsxx27
+ libgnutls-deb0-28
+ libgnutlsxx28
+ libgnutls28-dev
libgomp1
libgpg-error0
libgpg-error-dev
@@ -83,12 +88,16 @@ DEBIAN_PACKAGES="\
libgssrpc4
libgtk2.0-0
libgtk2.0-dev
+ libharfbuzz0b
+ libharfbuzz-dev
+ libharfbuzz-gobject0
+ libharfbuzz-icu0
+ libatomic1
libk5crypto3
- libkadm5clnt-mit8
- libkadm5srv-mit8
- libkdb5-6
+ libkadm5clnt-mit9
+ libkadm5srv-mit9
+ libkdb5-7
libkeyutils1
- libkms1
libkrb5-3
libkrb5-dev
libkrb5support0
@@ -102,8 +111,12 @@ DEBIAN_PACKAGES="\
libp11-kit0
libpam0g
libpam0g-dev
- libpango1.0-0
+ libpango-1.0-0
libpango1.0-dev
+ libpangoft2-1.0-0
+ libpangocairo-1.0-0
+ libpangox-1.0-0
+ libpangoxft-1.0-0
libpci3
libpci-dev
libpcre3
@@ -123,8 +136,8 @@ DEBIAN_PACKAGES="\
libssl1.0.0
libssl-dev
libstdc++6
- libstdc++6-4.6-dev
- libtasn1-3
+ libstdc++-4.8-dev
+ libtasn1-6
libx11-6
libx11-dev
libx11-xcb1
@@ -183,7 +196,26 @@ DEBIAN_PACKAGES="\
zlib1g-dev
"
-DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1"
-DEBIAN_PACKAGES_ARM="libdrm-omap1"
+DEBIAN_PACKAGES_AMD64="
+ liblsan0
+ libtsan0
+"
+
+DEBIAN_PACKAGES_X86="
+ libquadmath0
+ libdrm-intel1
+ libcilkrts5
+ libitm1
+ libasan0
+ libubsan0
+"
+
+DEBIAN_PACKAGES_ARM="
+ libdrm-omap1
+ libdrm-exynos1
+ libdrm-freedreno1
+ libasan0
+ libubsan0
+"
. ${SCRIPT_DIR}/sysroot-creator.sh
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698