OLD | NEW |
1 #!/bin/sh | 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=jessie | 9 DIST=jessie |
10 PACKAGES_EXT=xz | 10 PACKAGES_EXT=xz |
11 APT_REPO=http://http.us.debian.org/debian | 11 APT_REPO=http://http.us.debian.org/debian |
12 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | 12 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" |
13 # gpg keyring file generated using: | 13 # gpg keyring file generated using: |
14 # export KEYS="518E17E1 46925553 2B90D010" | 14 # export KEYS="518E17E1 46925553 2B90D010" |
15 # gpg --recv-keys $KEYS | 15 # gpg --recv-keys $KEYS |
16 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS | 16 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS |
17 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg | 17 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg |
18 | 18 |
| 19 HAS_ARCH_AMD64=1 |
| 20 HAS_ARCH_I386=1 |
| 21 HAS_ARCH_ARM=1 |
| 22 HAS_ARCH_ARM64=1 |
| 23 HAS_ARCH_MIPS=1 |
| 24 |
19 # Sysroot packages: these are the packages needed to build chrome. | 25 # Sysroot packages: these are the packages needed to build chrome. |
20 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 26 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
21 # by running this script in GeneratePackageList mode. | 27 # by running this script in GeneratePackageList mode. |
22 DEBIAN_PACKAGES="\ | 28 DEBIAN_PACKAGES="\ |
23 comerr-dev | 29 comerr-dev |
24 krb5-multidev | 30 krb5-multidev |
25 libasound2 | 31 libasound2 |
26 libasound2-dev | 32 libasound2-dev |
27 libatk1.0-0 | 33 libatk1.0-0 |
28 libatk1.0-dev | 34 libatk1.0-dev |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 libdatrie1 | 228 libdatrie1 |
223 libgmp10 | 229 libgmp10 |
224 libgraphite2-3 | 230 libgraphite2-3 |
225 libhogweed2 | 231 libhogweed2 |
226 libitm1 | 232 libitm1 |
227 libnettle4 | 233 libnettle4 |
228 libthai0 | 234 libthai0 |
229 " | 235 " |
230 | 236 |
231 . ${SCRIPT_DIR}/sysroot-creator.sh | 237 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |