| 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=$(dirname $0) | 6 SCRIPT_DIR=$(dirname $0) |
| 7 | 7 |
| 8 DISTRO=ubuntu | 8 DISTRO=ubuntu |
| 9 DIST=trusty | 9 DIST=trusty |
| 10 | 10 |
| 11 # This is where we get all the debian packages from. | 11 # This is where we get all the debian packages from. |
| 12 APT_REPO=http://archive.ubuntu.com/ubuntu | 12 APT_REPO=http://archive.ubuntu.com/ubuntu |
| 13 APT_REPO_ARM=http://ports.ubuntu.com | 13 APT_REPO_ARM=http://ports.ubuntu.com |
| 14 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | 14 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" |
| 15 REPO_BASEDIR_ARM="${APT_REPO_ARM}/dists/${DIST}" |
| 16 REPO_BASEDIR_ARM64="${APT_REPO_ARM}/dists/${DIST}" |
| 15 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg | 17 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg |
| 16 | 18 |
| 19 HAS_ARCH_AMD64=1 |
| 20 HAS_ARCH_I386=1 |
| 21 HAS_ARCH_ARM=1 |
| 22 HAS_ARCH_ARM64=1 |
| 23 |
| 17 # Sysroot packages: these are the packages needed to build chrome. | 24 # Sysroot packages: these are the packages needed to build chrome. |
| 18 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 25 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 19 # by running this script in GeneratePackageList mode. | 26 # by running this script in GeneratePackageList mode. |
| 20 DEBIAN_PACKAGES="\ | 27 DEBIAN_PACKAGES="\ |
| 21 comerr-dev | 28 comerr-dev |
| 22 gcc-4.8 | 29 gcc-4.8 |
| 23 krb5-multidev | 30 krb5-multidev |
| 24 libasound2 | 31 libasound2 |
| 25 libasound2-dev | 32 libasound2-dev |
| 26 libatk1.0-0 | 33 libatk1.0-0 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 x11proto-render-dev | 180 x11proto-render-dev |
| 174 x11proto-scrnsaver-dev | 181 x11proto-scrnsaver-dev |
| 175 x11proto-xext-dev | 182 x11proto-xext-dev |
| 176 zlib1g | 183 zlib1g |
| 177 zlib1g-dev | 184 zlib1g-dev |
| 178 " | 185 " |
| 179 | 186 |
| 180 DEBIAN_PACKAGES_X86="libquadmath0" | 187 DEBIAN_PACKAGES_X86="libquadmath0" |
| 181 | 188 |
| 182 . ${SCRIPT_DIR}/sysroot-creator.sh | 189 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |