| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 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=ubuntu | 8 DISTRO=ubuntu |
| 9 DIST=precise | 9 DIST=precise |
| 10 DIST_UPDATES=precise-updates | 10 DIST_UPDATES=precise-updates |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 libcups2-dev | 49 libcups2-dev |
| 50 libdbus-1-3 | 50 libdbus-1-3 |
| 51 libdbus-1-dev | 51 libdbus-1-dev |
| 52 libdbus-glib-1-2 | 52 libdbus-glib-1-2 |
| 53 libdrm-dev | 53 libdrm-dev |
| 54 libdrm-intel1 | 54 libdrm-intel1 |
| 55 libdrm-nouveau1a | 55 libdrm-nouveau1a |
| 56 libdrm-nouveau2 | 56 libdrm-nouveau2 |
| 57 libdrm-radeon1 | 57 libdrm-radeon1 |
| 58 libdrm2 | 58 libdrm2 |
| 59 libegl1-mesa |
| 60 libegl1-mesa-dev |
| 61 libegl1-mesa-drivers |
| 59 libelf1 | 62 libelf1 |
| 60 libelf-dev | 63 libelf-dev |
| 61 libexpat1 | 64 libexpat1 |
| 62 libexpat1-dev | 65 libexpat1-dev |
| 63 libffi6 | 66 libffi6 |
| 64 libffi-dev | 67 libffi-dev |
| 65 libfontconfig1 | 68 libfontconfig1 |
| 66 libfontconfig1-dev | 69 libfontconfig1-dev |
| 67 libfreetype6 | 70 libfreetype6 |
| 68 libfreetype6-dev | 71 libfreetype6-dev |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 libpulse-dev | 130 libpulse-dev |
| 128 libpulse-mainloop-glib0 | 131 libpulse-mainloop-glib0 |
| 129 libselinux1 | 132 libselinux1 |
| 130 libspeechd2 | 133 libspeechd2 |
| 131 libspeechd-dev | 134 libspeechd-dev |
| 132 libssl1.0.0 | 135 libssl1.0.0 |
| 133 libssl-dev | 136 libssl-dev |
| 134 libstdc++6 | 137 libstdc++6 |
| 135 libstdc++6-4.6-dev | 138 libstdc++6-4.6-dev |
| 136 libtasn1-3 | 139 libtasn1-3 |
| 140 libwayland0 |
| 141 libwayland-dev |
| 137 libx11-6 | 142 libx11-6 |
| 138 libx11-dev | 143 libx11-dev |
| 139 libx11-xcb1 | 144 libx11-xcb1 |
| 140 libx11-xcb-dev | 145 libx11-xcb-dev |
| 141 libxau6 | 146 libxau6 |
| 142 libxau-dev | 147 libxau-dev |
| 143 libxcb1 | 148 libxcb1 |
| 144 libxcb1-dev | 149 libxcb1-dev |
| 145 libxcb-glx0 | 150 libxcb-glx0 |
| 146 libxcb-render0 | 151 libxcb-render0 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 x11proto-scrnsaver-dev | 194 x11proto-scrnsaver-dev |
| 190 x11proto-xext-dev | 195 x11proto-xext-dev |
| 191 zlib1g | 196 zlib1g |
| 192 zlib1g-dev | 197 zlib1g-dev |
| 193 " | 198 " |
| 194 | 199 |
| 195 DEBIAN_PACKAGES_X86="libquadmath0" | 200 DEBIAN_PACKAGES_X86="libquadmath0" |
| 196 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 201 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
| 197 | 202 |
| 198 . ${SCRIPT_DIR}/sysroot-creator.sh | 203 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |