| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 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=$(cd $(dirname $0) && pwd) | 6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) |
| 7 | 7 |
| 8 DISTRO=debian | 8 DISTRO=debian |
| 9 DIST=wheezy | 9 DIST=wheezy |
| 10 DIST_UPDATES=wheezy-updates | 10 DIST_UPDATES=wheezy-updates |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 libcomerr2 | 46 libcomerr2 |
| 47 libcups2 | 47 libcups2 |
| 48 libcups2-dev | 48 libcups2-dev |
| 49 libdbus-1-3 | 49 libdbus-1-3 |
| 50 libdbus-1-dev | 50 libdbus-1-dev |
| 51 libdbus-glib-1-2 | 51 libdbus-glib-1-2 |
| 52 libdrm2 | 52 libdrm2 |
| 53 libdrm-dev | 53 libdrm-dev |
| 54 libdrm-nouveau1a | 54 libdrm-nouveau1a |
| 55 libdrm-radeon1 | 55 libdrm-radeon1 |
| 56 libegl1-mesa |
| 57 libegl1-mesa-dev |
| 58 libegl1-mesa-drivers |
| 56 libelf1 | 59 libelf1 |
| 57 libelf-dev | 60 libelf-dev |
| 58 libexpat1 | 61 libexpat1 |
| 59 libexpat1-dev | 62 libexpat1-dev |
| 60 libffi5 | 63 libffi5 |
| 61 libffi-dev | 64 libffi-dev |
| 62 libfontconfig1 | 65 libfontconfig1 |
| 63 libfontconfig1-dev | 66 libfontconfig1-dev |
| 64 libfreetype6 | 67 libfreetype6 |
| 65 libfreetype6-dev | 68 libfreetype6-dev |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 libselinux1 | 129 libselinux1 |
| 127 libspeechd2 | 130 libspeechd2 |
| 128 libspeechd-dev | 131 libspeechd-dev |
| 129 libssl1.0.0 | 132 libssl1.0.0 |
| 130 libssl-dev | 133 libssl-dev |
| 131 libstdc++6 | 134 libstdc++6 |
| 132 libstdc++6-4.6-dev | 135 libstdc++6-4.6-dev |
| 133 libtasn1-3 | 136 libtasn1-3 |
| 134 libudev-dev | 137 libudev-dev |
| 135 libudev0 | 138 libudev0 |
| 139 libwayland0 |
| 140 libwayland-dev |
| 136 libx11-6 | 141 libx11-6 |
| 137 libx11-dev | 142 libx11-dev |
| 138 libx11-xcb1 | 143 libx11-xcb1 |
| 139 libx11-xcb-dev | 144 libx11-xcb-dev |
| 140 libxau6 | 145 libxau6 |
| 141 libxau-dev | 146 libxau-dev |
| 142 libxcb1 | 147 libxcb1 |
| 143 libxcb1-dev | 148 libxcb1-dev |
| 144 libxcb-glx0 | 149 libxcb-glx0 |
| 145 libxcb-render0 | 150 libxcb-render0 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 x11proto-xinerama-dev | 195 x11proto-xinerama-dev |
| 191 zlib1g | 196 zlib1g |
| 192 zlib1g-dev | 197 zlib1g-dev |
| 193 " | 198 " |
| 194 | 199 |
| 195 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" | 200 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" |
| 196 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 201 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
| 197 DEBIAN_PACKAGES_AMD64="" | 202 DEBIAN_PACKAGES_AMD64="" |
| 198 | 203 |
| 199 . ${SCRIPT_DIR}/sysroot-creator.sh | 204 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |