| 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=jessie | 9 DIST=jessie |
| 10 DIST_UPDATES=jessie-updates | 10 DIST_UPDATES=jessie-updates |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 libcomerr2 | 52 libcomerr2 |
| 53 libcups2 | 53 libcups2 |
| 54 libcups2-dev | 54 libcups2-dev |
| 55 libdbus-1-3 | 55 libdbus-1-3 |
| 56 libdbus-1-dev | 56 libdbus-1-dev |
| 57 libdbus-glib-1-2 | 57 libdbus-glib-1-2 |
| 58 libdrm2 | 58 libdrm2 |
| 59 libdrm-dev | 59 libdrm-dev |
| 60 libdrm-nouveau2 | 60 libdrm-nouveau2 |
| 61 libdrm-radeon1 | 61 libdrm-radeon1 |
| 62 libegl1-mesa |
| 63 libegl1-mesa-dev |
| 62 libelf1 | 64 libelf1 |
| 63 libelf-dev | 65 libelf-dev |
| 64 libexpat1 | 66 libexpat1 |
| 65 libexpat1-dev | 67 libexpat1-dev |
| 66 libffi6 | 68 libffi6 |
| 67 libffi-dev | 69 libffi-dev |
| 68 libfontconfig1 | 70 libfontconfig1 |
| 69 libfontconfig1-dev | 71 libfontconfig1-dev |
| 70 libfreetype6 | 72 libfreetype6 |
| 71 libfreetype6-dev | 73 libfreetype6-dev |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 libselinux1 | 143 libselinux1 |
| 142 libspeechd2 | 144 libspeechd2 |
| 143 libspeechd-dev | 145 libspeechd-dev |
| 144 libssl1.0.0 | 146 libssl1.0.0 |
| 145 libssl-dev | 147 libssl-dev |
| 146 libstdc++6 | 148 libstdc++6 |
| 147 libstdc++-4.8-dev | 149 libstdc++-4.8-dev |
| 148 libtasn1-6 | 150 libtasn1-6 |
| 149 libudev-dev | 151 libudev-dev |
| 150 libudev1 | 152 libudev1 |
| 153 libwayland-client0 |
| 154 libwayland-cursor0 |
| 155 libwayland-dev |
| 156 libwayland-egl1-mesa |
| 157 libwayland-server0 |
| 151 libx11-6 | 158 libx11-6 |
| 152 libx11-dev | 159 libx11-dev |
| 153 libx11-xcb1 | 160 libx11-xcb1 |
| 154 libx11-xcb-dev | 161 libx11-xcb-dev |
| 155 libxau6 | 162 libxau6 |
| 156 libxau-dev | 163 libxau-dev |
| 157 libxcb1 | 164 libxcb1 |
| 158 libxcb1-dev | 165 libxcb1-dev |
| 159 libxcb-glx0 | 166 libxcb-glx0 |
| 160 libxcb-render0 | 167 libxcb-render0 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 libdatrie1 | 239 libdatrie1 |
| 233 libgmp10 | 240 libgmp10 |
| 234 libgraphite2-3 | 241 libgraphite2-3 |
| 235 libhogweed2 | 242 libhogweed2 |
| 236 libitm1 | 243 libitm1 |
| 237 libnettle4 | 244 libnettle4 |
| 238 libthai0 | 245 libthai0 |
| 239 " | 246 " |
| 240 | 247 |
| 241 . ${SCRIPT_DIR}/sysroot-creator.sh | 248 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |