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

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-wheezy.sh

Issue 2270253002: Give precedence to trusty-updates in trusty sysroot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@RefactorSysrootCreator
Patch Set: Refactor Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator-trusty.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) 6 SCRIPT_DIR=$(cd $(dirname $0) && pwd)
7 7
8 DISTRO=debian 8 DISTRO=debian
9 DIST=wheezy 9 DIST=wheezy
10 APT_REPO=http://http.us.debian.org/debian 10 APT_REPO=http://http.us.debian.org/debian
11 REPO_BASEDIR="${APT_REPO}/dists/${DIST}"
12 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg 11 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg
13 12
14 HAS_ARCH_AMD64=1 13 HAS_ARCH_AMD64=1
15 HAS_ARCH_I386=1 14 HAS_ARCH_I386=1
16 HAS_ARCH_ARM=1 15 HAS_ARCH_ARM=1
17 HAS_ARCH_MIPS=1 16 HAS_ARCH_MIPS=1
18 17
19 # Sysroot packages: these are the packages needed to build chrome. 18 # Sysroot packages: these are the packages needed to build chrome.
20 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated 19 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated
21 # by running this script in GeneratePackageList mode. 20 # by running this script in GeneratePackageList mode.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 x11proto-xinerama-dev 186 x11proto-xinerama-dev
188 zlib1g 187 zlib1g
189 zlib1g-dev 188 zlib1g-dev
190 " 189 "
191 190
192 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" 191 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1"
193 DEBIAN_PACKAGES_ARM="libdrm-omap1" 192 DEBIAN_PACKAGES_ARM="libdrm-omap1"
194 DEBIAN_PACKAGES_AMD64="" 193 DEBIAN_PACKAGES_AMD64=""
195 194
196 . ${SCRIPT_DIR}/sysroot-creator.sh 195 . ${SCRIPT_DIR}/sysroot-creator.sh
OLDNEW
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator-trusty.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698