| 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=$(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 APT_REPO_ARM64=http://ports.ubuntu.com |
| 14 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | 15 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" |
| 15 REPO_BASEDIR_ARM="${APT_REPO_ARM}/dists/${DIST}" | |
| 16 REPO_BASEDIR_ARM64="${APT_REPO_ARM}/dists/${DIST}" | |
| 17 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg | 16 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg |
| 18 | 17 |
| 19 HAS_ARCH_AMD64=1 | 18 HAS_ARCH_AMD64=1 |
| 20 HAS_ARCH_I386=1 | 19 HAS_ARCH_I386=1 |
| 21 HAS_ARCH_ARM=1 | 20 HAS_ARCH_ARM=1 |
| 22 HAS_ARCH_ARM64=1 | 21 HAS_ARCH_ARM64=1 |
| 23 | 22 |
| 24 # Sysroot packages: these are the packages needed to build chrome. | 23 # Sysroot packages: these are the packages needed to build chrome. |
| 25 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 24 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 26 # by running this script in GeneratePackageList mode. | 25 # by running this script in GeneratePackageList mode. |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 x11proto-render-dev | 179 x11proto-render-dev |
| 181 x11proto-scrnsaver-dev | 180 x11proto-scrnsaver-dev |
| 182 x11proto-xext-dev | 181 x11proto-xext-dev |
| 183 zlib1g | 182 zlib1g |
| 184 zlib1g-dev | 183 zlib1g-dev |
| 185 " | 184 " |
| 186 | 185 |
| 187 DEBIAN_PACKAGES_X86="libquadmath0" | 186 DEBIAN_PACKAGES_X86="libquadmath0" |
| 188 | 187 |
| 189 . ${SCRIPT_DIR}/sysroot-creator.sh | 188 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |