| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 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 "${BASH_SOURCE[0]}" )" && pwd )" | 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 7 | 7 |
| 8 DISTRO=ubuntu | 8 DISTRO=ubuntu |
| 9 DIST=precise | 9 DIST=precise |
| 10 DIST_UPDATES=precise-updates | 10 DIST_UPDATES=precise-updates |
| 11 REPO_EXTRA="universe" |
| 11 | 12 |
| 12 # This is where we get all the debian packages from. | 13 # This is where we get all the debian packages from. |
| 13 APT_REPO=http://archive.ubuntu.com/ubuntu | 14 APT_REPO=http://archive.ubuntu.com/ubuntu |
| 14 APT_REPO_ARM=http://ports.ubuntu.com | 15 APT_REPO_ARM=http://ports.ubuntu.com |
| 15 APT_REPO_ARM64=http://ports.ubuntu.com | 16 APT_REPO_ARM64=http://ports.ubuntu.com |
| 16 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg | 17 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg |
| 17 | 18 |
| 18 HAS_ARCH_AMD64=1 | 19 HAS_ARCH_AMD64=1 |
| 19 | 20 |
| 20 # Precise supports these architectures but they are not needed by chrome. | 21 # Precise supports these architectures but they are not needed by chrome. |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 libxdmcp6 | 166 libxdmcp6 |
| 166 libxdmcp-dev | 167 libxdmcp-dev |
| 167 libxext6 | 168 libxext6 |
| 168 libxext-dev | 169 libxext-dev |
| 169 libxfixes3 | 170 libxfixes3 |
| 170 libxfixes-dev | 171 libxfixes-dev |
| 171 libxi6 | 172 libxi6 |
| 172 libxi-dev | 173 libxi-dev |
| 173 libxinerama1 | 174 libxinerama1 |
| 174 libxinerama-dev | 175 libxinerama-dev |
| 176 libxkbcommon0 |
| 177 libxkbcommon-dev |
| 175 libxrandr2 | 178 libxrandr2 |
| 176 libxrandr-dev | 179 libxrandr-dev |
| 177 libxrender1 | 180 libxrender1 |
| 178 libxrender-dev | 181 libxrender-dev |
| 179 libxss1 | 182 libxss1 |
| 180 libxss-dev | 183 libxss-dev |
| 181 libxt6 | 184 libxt6 |
| 182 libxt-dev | 185 libxt-dev |
| 183 libxtst6 | 186 libxtst6 |
| 184 libxtst-dev | 187 libxtst-dev |
| (...skipping 13 matching lines...) Expand all Loading... |
| 198 x11proto-scrnsaver-dev | 201 x11proto-scrnsaver-dev |
| 199 x11proto-xext-dev | 202 x11proto-xext-dev |
| 200 zlib1g | 203 zlib1g |
| 201 zlib1g-dev | 204 zlib1g-dev |
| 202 " | 205 " |
| 203 | 206 |
| 204 DEBIAN_PACKAGES_X86="libquadmath0" | 207 DEBIAN_PACKAGES_X86="libquadmath0" |
| 205 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 208 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
| 206 | 209 |
| 207 . "${SCRIPT_DIR}/sysroot-creator.sh" | 210 . "${SCRIPT_DIR}/sysroot-creator.sh" |
| OLD | NEW |