| OLD | NEW |
| 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 "${BASH_SOURCE[0]}" )" && pwd )" |
| 7 | 7 |
| 8 DISTRO=debian | 8 DISTRO=debian |
| 9 DIST=wheezy | 9 DIST=wheezy |
| 10 DIST_UPDATES=wheezy-updates | 10 DIST_UPDATES=wheezy-updates |
| 11 | 11 |
| 12 APT_REPO=http://http.us.debian.org/debian | 12 APT_REPO=http://http.us.debian.org/debian |
| 13 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg | 13 KEYRING_FILE="${SCRIPT_DIR}/debian-archive-wheezy-stable.gpg" |
| 14 | 14 |
| 15 HAS_ARCH_AMD64=1 | 15 HAS_ARCH_AMD64=1 |
| 16 HAS_ARCH_I386=1 | 16 HAS_ARCH_I386=1 |
| 17 HAS_ARCH_ARM=1 | 17 HAS_ARCH_ARM=1 |
| 18 HAS_ARCH_MIPS=1 | 18 HAS_ARCH_MIPS=1 |
| 19 | 19 |
| 20 # Sysroot packages: these are the packages needed to build chrome. | 20 # Sysroot packages: these are the packages needed to build chrome. |
| 21 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 21 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 22 # by running this script in GeneratePackageList mode. | 22 # by running this script in GeneratePackageList mode. |
| 23 DEBIAN_PACKAGES="\ | 23 DEBIAN_PACKAGES="\ |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 x11proto-xext-dev | 196 x11proto-xext-dev |
| 197 x11proto-xinerama-dev | 197 x11proto-xinerama-dev |
| 198 zlib1g | 198 zlib1g |
| 199 zlib1g-dev | 199 zlib1g-dev |
| 200 " | 200 " |
| 201 | 201 |
| 202 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" | 202 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" |
| 203 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 203 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
| 204 DEBIAN_PACKAGES_AMD64="" | 204 DEBIAN_PACKAGES_AMD64="" |
| 205 | 205 |
| 206 . ${SCRIPT_DIR}/sysroot-creator.sh | 206 . "${SCRIPT_DIR}/sysroot-creator.sh" |
| OLD | NEW |