| 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}" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 libpulse-dev \ | 109 libpulse-dev \ |
| 110 libpulse-mainloop-glib0 \ | 110 libpulse-mainloop-glib0 \ |
| 111 libselinux1 \ | 111 libselinux1 \ |
| 112 libspeechd2 \ | 112 libspeechd2 \ |
| 113 libspeechd-dev \ | 113 libspeechd-dev \ |
| 114 libssl1.0.0 \ | 114 libssl1.0.0 \ |
| 115 libssl-dev \ | 115 libssl-dev \ |
| 116 libstdc++6 \ | 116 libstdc++6 \ |
| 117 libstdc++6-4.6-dev \ | 117 libstdc++6-4.6-dev \ |
| 118 libtasn1-3 \ | 118 libtasn1-3 \ |
| 119 libudev0 \ | |
| 120 libudev-dev \ | |
| 121 libx11-6 \ | 119 libx11-6 \ |
| 122 libx11-dev \ | 120 libx11-dev \ |
| 123 libx11-xcb1 \ | 121 libx11-xcb1 \ |
| 124 libxau6 \ | 122 libxau6 \ |
| 125 libxau-dev \ | 123 libxau-dev \ |
| 126 libxcb1 \ | 124 libxcb1 \ |
| 127 libxcb1-dev \ | 125 libxcb1-dev \ |
| 128 libxcb-glx0 \ | 126 libxcb-glx0 \ |
| 129 libxcb-render0 \ | 127 libxcb-render0 \ |
| 130 libxcb-render0-dev \ | 128 libxcb-render0-dev \ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 x11proto-record-dev \ | 167 x11proto-record-dev \ |
| 170 x11proto-render-dev \ | 168 x11proto-render-dev \ |
| 171 x11proto-scrnsaver-dev \ | 169 x11proto-scrnsaver-dev \ |
| 172 x11proto-xext-dev \ | 170 x11proto-xext-dev \ |
| 173 zlib1g \ | 171 zlib1g \ |
| 174 zlib1g-dev" | 172 zlib1g-dev" |
| 175 | 173 |
| 176 DEBIAN_PACKAGES_X86="libquadmath0" | 174 DEBIAN_PACKAGES_X86="libquadmath0" |
| 177 | 175 |
| 178 . ${SCRIPT_DIR}/sysroot-creator.sh | 176 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |