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

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-trusty.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
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=$(dirname $0) 6 SCRIPT_DIR=$(dirname $0)
7 7
8 DISTRO=ubuntu 8 DISTRO=ubuntu
9 DIST=trusty 9 DIST=trusty
10 DIST_UPDATES=trusty-updates
10 11
11 # This is where we get all the debian packages from. 12 # This is where we get all the debian packages from.
12 APT_REPO=http://archive.ubuntu.com/ubuntu 13 APT_REPO=http://archive.ubuntu.com/ubuntu
13 APT_REPO_ARM=http://ports.ubuntu.com 14 APT_REPO_ARM=http://ports.ubuntu.com
14 APT_REPO_ARM64=http://ports.ubuntu.com 15 APT_REPO_ARM64=http://ports.ubuntu.com
15 REPO_BASEDIR="${APT_REPO}/dists/${DIST}"
16 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg 16 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg
17 17
18 HAS_ARCH_AMD64=1 18 HAS_ARCH_AMD64=1
19 HAS_ARCH_I386=1 19 HAS_ARCH_I386=1
20 HAS_ARCH_ARM=1 20 HAS_ARCH_ARM=1
21 HAS_ARCH_ARM64=1 21 HAS_ARCH_ARM64=1
22 22
23 # Sysroot packages: these are the packages needed to build chrome. 23 # Sysroot packages: these are the packages needed to build chrome.
24 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated 24 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated
25 # by running this script in GeneratePackageList mode. 25 # by running this script in GeneratePackageList mode.
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 x11proto-render-dev 179 x11proto-render-dev
180 x11proto-scrnsaver-dev 180 x11proto-scrnsaver-dev
181 x11proto-xext-dev 181 x11proto-xext-dev
182 zlib1g 182 zlib1g
183 zlib1g-dev 183 zlib1g-dev
184 " 184 "
185 185
186 DEBIAN_PACKAGES_X86="libquadmath0" 186 DEBIAN_PACKAGES_X86="libquadmath0"
187 187
188 . ${SCRIPT_DIR}/sysroot-creator.sh 188 . ${SCRIPT_DIR}/sysroot-creator.sh
OLDNEW
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator-jessie.sh ('k') | build/linux/sysroot_scripts/sysroot-creator-wheezy.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698