| 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=jessie | 9 DIST=jessie |
| 10 DIST_UPDATES=jessie-updates | 10 DIST_UPDATES=jessie-updates |
| 11 | 11 |
| 12 PACKAGES_EXT=xz | 12 PACKAGES_EXT=xz |
| 13 | 13 |
| 14 APT_REPO=http://http.us.debian.org/debian | 14 APT_REPO=http://http.us.debian.org/debian |
| 15 # gpg keyring file generated using: | 15 # gpg keyring file generated using: |
| 16 # export KEYS="518E17E1 46925553 2B90D010" | 16 # export KEYS="518E17E1 46925553 2B90D010" |
| 17 # gpg --recv-keys $KEYS | 17 # gpg --recv-keys $KEYS |
| 18 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS | 18 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS |
| 19 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg | 19 KEYRING_FILE="${SCRIPT_DIR}/debian-archive-jessie-stable.gpg" |
| 20 | 20 |
| 21 HAS_ARCH_AMD64=1 | 21 HAS_ARCH_AMD64=1 |
| 22 HAS_ARCH_I386=1 | 22 HAS_ARCH_I386=1 |
| 23 HAS_ARCH_ARM=1 | 23 HAS_ARCH_ARM=1 |
| 24 HAS_ARCH_ARM64=1 | 24 HAS_ARCH_ARM64=1 |
| 25 HAS_ARCH_MIPS=1 | 25 HAS_ARCH_MIPS=1 |
| 26 | 26 |
| 27 # Sysroot packages: these are the packages needed to build chrome. | 27 # Sysroot packages: these are the packages needed to build chrome. |
| 28 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 28 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 29 # by running this script in GeneratePackageList mode. | 29 # by running this script in GeneratePackageList mode. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 DEBIAN_PACKAGES_ARM64=" | 246 DEBIAN_PACKAGES_ARM64=" |
| 247 libdatrie1 | 247 libdatrie1 |
| 248 libgmp10 | 248 libgmp10 |
| 249 libgraphite2-3 | 249 libgraphite2-3 |
| 250 libhogweed2 | 250 libhogweed2 |
| 251 libitm1 | 251 libitm1 |
| 252 libnettle4 | 252 libnettle4 |
| 253 libthai0 | 253 libthai0 |
| 254 " | 254 " |
| 255 | 255 |
| 256 . ${SCRIPT_DIR}/sysroot-creator.sh | 256 . "${SCRIPT_DIR}/sysroot-creator.sh" |
| OLD | NEW |