| 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 $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 Loading... |
| 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 |
| OLD | NEW |