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=trusty | 8 DIST=trusty |
9 | 9 |
10 # This is where we get all the debian packages from. | 10 # This is where we get all the debian packages from. |
11 APT_REPO=http://archive.ubuntu.com/ubuntu | 11 APT_REPO=http://archive.ubuntu.com/ubuntu |
12 APT_REPO_ARM=http://ports.ubuntu.com | 12 APT_REPO_ARM=http://ports.ubuntu.com |
13 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | 13 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" |
14 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg | 14 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg |
15 | 15 |
16 # Sysroot packages: these are the packages needed to build chrome. | 16 # Sysroot packages: these are the packages needed to build chrome. |
17 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 17 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
18 # by running this script in GeneratePackageList mode. | 18 # by running this script in GeneratePackageList mode. |
| 19 # TODO(thestig) Remove libgcrypt11* the next time a package gets added. |
19 DEBIAN_PACKAGES="\ | 20 DEBIAN_PACKAGES="\ |
20 comerr-dev \ | 21 comerr-dev \ |
21 gcc-4.8 \ | 22 gcc-4.8 \ |
22 krb5-multidev \ | 23 krb5-multidev \ |
23 libasound2 \ | 24 libasound2 \ |
24 libasound2-dev \ | 25 libasound2-dev \ |
25 libatk1.0-0 \ | 26 libatk1.0-0 \ |
26 libatk1.0-dev \ | 27 libatk1.0-dev \ |
27 libavahi-client3 \ | 28 libavahi-client3 \ |
28 libavahi-common3 \ | 29 libavahi-common3 \ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 x11proto-record-dev \ | 175 x11proto-record-dev \ |
175 x11proto-render-dev \ | 176 x11proto-render-dev \ |
176 x11proto-scrnsaver-dev \ | 177 x11proto-scrnsaver-dev \ |
177 x11proto-xext-dev \ | 178 x11proto-xext-dev \ |
178 zlib1g \ | 179 zlib1g \ |
179 zlib1g-dev" | 180 zlib1g-dev" |
180 | 181 |
181 DEBIAN_PACKAGES_X86="libquadmath0" | 182 DEBIAN_PACKAGES_X86="libquadmath0" |
182 | 183 |
183 . ${SCRIPT_DIR}/sysroot-creator.sh | 184 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |