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 DISTRO=debian | 8 DISTRO=debian |
9 DIST=wheezy | 9 DIST=wheezy |
10 APT_REPO=http://http.us.debian.org/debian | 10 APT_REPO=http://http.us.debian.org/debian |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 x11proto-record-dev \ | 168 x11proto-record-dev \ |
169 x11proto-render-dev \ | 169 x11proto-render-dev \ |
170 x11proto-scrnsaver-dev \ | 170 x11proto-scrnsaver-dev \ |
171 x11proto-xext-dev \ | 171 x11proto-xext-dev \ |
172 zlib1g \ | 172 zlib1g \ |
173 zlib1g-dev" | 173 zlib1g-dev" |
174 | 174 |
175 DEBIAN_PACKAGES_X86="libquadmath0" | 175 DEBIAN_PACKAGES_X86="libquadmath0" |
176 | 176 |
177 . ${SCRIPT_DIR}/sysroot-creator.sh | 177 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |