| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 libwayland-client0 | 159 libwayland-client0 |
| 160 libwayland-cursor0 | 160 libwayland-cursor0 |
| 161 libwayland-dev | 161 libwayland-dev |
| 162 libwayland-egl1-mesa | 162 libwayland-egl1-mesa |
| 163 libwayland-server0 | 163 libwayland-server0 |
| 164 libx11-6 | 164 libx11-6 |
| 165 libx11-dev | 165 libx11-dev |
| 166 libx11-xcb1 | 166 libx11-xcb1 |
| 167 libx11-xcb-dev | 167 libx11-xcb-dev |
| 168 libxau6 | 168 libxau6 |
| 169 libaudit1 |
| 169 libxau-dev | 170 libxau-dev |
| 170 libxcb1 | 171 libxcb1 |
| 171 libxcb1-dev | 172 libxcb1-dev |
| 173 libxcb-dri2-0 |
| 174 libxcb-dri3-0 |
| 172 libxcb-glx0 | 175 libxcb-glx0 |
| 176 libxcb-present0 |
| 173 libxcb-render0 | 177 libxcb-render0 |
| 174 libxcb-render0-dev | 178 libxcb-render0-dev |
| 179 libxcb-sync1 |
| 175 libxcb-shm0 | 180 libxcb-shm0 |
| 176 libxcb-shm0-dev | 181 libxcb-shm0-dev |
| 177 libxcomposite1 | 182 libxcomposite1 |
| 178 libxcomposite-dev | 183 libxcomposite-dev |
| 179 libxcursor1 | 184 libxcursor1 |
| 180 libxcursor-dev | 185 libxcursor-dev |
| 181 libxdamage1 | 186 libxdamage1 |
| 182 libxdamage-dev | 187 libxdamage-dev |
| 183 libxdmcp6 | 188 libxdmcp6 |
| 184 libxdmcp-dev | 189 libxdmcp-dev |
| 185 libxext6 | 190 libxext6 |
| 186 libxext-dev | 191 libxext-dev |
| 187 libxfixes3 | 192 libxfixes3 |
| 188 libxfixes-dev | 193 libxfixes-dev |
| 189 libxi6 | 194 libxi6 |
| 190 libxi-dev | 195 libxi-dev |
| 191 libxinerama1 | 196 libxinerama1 |
| 192 libxinerama-dev | 197 libxinerama-dev |
| 193 libxkbcommon0 | 198 libxkbcommon0 |
| 194 libxkbcommon-dev | 199 libxkbcommon-dev |
| 195 libxrandr2 | 200 libxrandr2 |
| 196 libxrandr-dev | 201 libxrandr-dev |
| 197 libxrender1 | 202 libxrender1 |
| 198 libxrender-dev | 203 libxrender-dev |
| 204 libxshmfence1 |
| 199 libxss1 | 205 libxss1 |
| 200 libxss-dev | 206 libxss-dev |
| 201 libxt6 | 207 libxt6 |
| 202 libxt-dev | 208 libxt-dev |
| 203 libxtst6 | 209 libxtst6 |
| 204 libxtst-dev | 210 libxtst-dev |
| 205 libxxf86vm1 | 211 libxxf86vm1 |
| 206 linux-libc-dev | 212 linux-libc-dev |
| 207 mesa-common-dev | 213 mesa-common-dev |
| 208 speech-dispatcher | 214 speech-dispatcher |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 libdatrie1 | 253 libdatrie1 |
| 248 libgmp10 | 254 libgmp10 |
| 249 libgraphite2-3 | 255 libgraphite2-3 |
| 250 libhogweed2 | 256 libhogweed2 |
| 251 libitm1 | 257 libitm1 |
| 252 libnettle4 | 258 libnettle4 |
| 253 libthai0 | 259 libthai0 |
| 254 " | 260 " |
| 255 | 261 |
| 256 . ${SCRIPT_DIR}/sysroot-creator.sh | 262 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |