| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 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 DIST=wheezy | 8 DIST=wheezy |
| 9 APT_REPO=http://http.us.debian.org/debian | 9 APT_REPO=http://http.us.debian.org/debian |
| 10 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | 10 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" |
| 11 KEYRING_FILE=/usr/share/keyrings/debian-archive-keyring.gpg | 11 KEYRING_FILE=/usr/share/keyrings/debian-archive-keyring.gpg |
| 12 | 12 |
| 13 # Sysroot packages: these are the packages needed to build chrome. | 13 # Sysroot packages: these are the packages needed to build chrome. |
| 14 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 14 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 15 # by running this script in GeneratePackageList mode. | 15 # by running this script in GeneratePackageList mode. |
| 16 # TODO(thestig) Remove libgcrypt11* the next time a package gets added. |
| 16 DEBIAN_PACKAGES="\ | 17 DEBIAN_PACKAGES="\ |
| 17 comerr-dev \ | 18 comerr-dev \ |
| 18 gcc-4.6 \ | 19 gcc-4.6 \ |
| 19 krb5-multidev \ | 20 krb5-multidev \ |
| 20 libasound2 \ | 21 libasound2 \ |
| 21 libasound2-dev \ | 22 libasound2-dev \ |
| 22 libatk1.0-0 \ | 23 libatk1.0-0 \ |
| 23 libatk1.0-dev \ | 24 libatk1.0-dev \ |
| 24 libavahi-client3 \ | 25 libavahi-client3 \ |
| 25 libavahi-common3 \ | 26 libavahi-common3 \ |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 x11proto-record-dev \ | 169 x11proto-record-dev \ |
| 169 x11proto-render-dev \ | 170 x11proto-render-dev \ |
| 170 x11proto-scrnsaver-dev \ | 171 x11proto-scrnsaver-dev \ |
| 171 x11proto-xext-dev \ | 172 x11proto-xext-dev \ |
| 172 zlib1g \ | 173 zlib1g \ |
| 173 zlib1g-dev" | 174 zlib1g-dev" |
| 174 | 175 |
| 175 DEBIAN_PACKAGES_X86="libquadmath0" | 176 DEBIAN_PACKAGES_X86="libquadmath0" |
| 176 | 177 |
| 177 . ${SCRIPT_DIR}/sysroot-creator.sh | 178 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |