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

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

Issue 2391573005: Linux: Add a script to generate a Precise dpkg admin dir for use with official builds on Trusty. (Closed)
Patch Set: Update generate_precise_dpkg_admin_dir.py Created 4 years, 2 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/generate_precise_dpkg_admin_dir.py ('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.sh
diff --git a/build/linux/sysroot_scripts/sysroot-creator.sh b/build/linux/sysroot_scripts/sysroot-creator.sh
index 64d9ab44672abb0c08f79bd4968adc7a6a14132d..987a8a139c92f85966c11c1686a77d2d33174303 100644
--- a/build/linux/sysroot_scripts/sysroot-creator.sh
+++ b/build/linux/sysroot_scripts/sysroot-creator.sh
@@ -807,6 +807,24 @@ UpdatePackageListsAll() {
RunCommand UpdatePackageListsMips
}
+#@
+#@ ListPackagesI386
+#@
+#@ Lists all packages necessary to build chrome for i386
+ListPackagesI386() {
+ echo "${DEBIAN_PACKAGES} ${DEBIAN_PACKAGES_X86:=}" |
+ sed -e 's/^[[:space:]]*//' | sed '/^$/d' > "$1"
+}
+
+#@
+#@ ListPackagesAmd64
+#@
+#@ Lists all packages necessary to build chrome for amd64
+ListPackagesAmd64() {
+ echo "${DEBIAN_PACKAGES} ${DEBIAN_PACKAGES_AMD64:=}" |
+ sed -e 's/^[[:space:]]*//' | sed '/^$/d' > "$1"
+}
+
RunCommand() {
SetEnvironmentVariables "$1"
SanityCheck
« no previous file with comments | « build/linux/sysroot_scripts/generate_precise_dpkg_admin_dir.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698