| 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=$(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 PACKAGES_EXT=xz | 10 PACKAGES_EXT=xz |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 libcups2-dev | 44 libcups2-dev |
| 45 libdbus-1-3 | 45 libdbus-1-3 |
| 46 libdbus-1-dev | 46 libdbus-1-dev |
| 47 libdbus-glib-1-2 | 47 libdbus-glib-1-2 |
| 48 libdrm2 | 48 libdrm2 |
| 49 libdrm-dev | 49 libdrm-dev |
| 50 libdrm-nouveau2 | 50 libdrm-nouveau2 |
| 51 libdrm-radeon1 | 51 libdrm-radeon1 |
| 52 libelf1 | 52 libelf1 |
| 53 libelf-dev | 53 libelf-dev |
| 54 libexif12 | |
| 55 libexif-dev | |
| 56 libexpat1 | 54 libexpat1 |
| 57 libexpat1-dev | 55 libexpat1-dev |
| 58 libffi6 | 56 libffi6 |
| 59 libffi-dev | 57 libffi-dev |
| 60 libfontconfig1 | 58 libfontconfig1 |
| 61 libfontconfig1-dev | 59 libfontconfig1-dev |
| 62 libfreetype6 | 60 libfreetype6 |
| 63 libfreetype6-dev | 61 libfreetype6-dev |
| 64 libgcc-4.8-dev | 62 libgcc-4.8-dev |
| 65 libgcc1 | 63 libgcc1 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 212 |
| 215 DEBIAN_PACKAGES_ARM=" | 213 DEBIAN_PACKAGES_ARM=" |
| 216 libdrm-omap1 | 214 libdrm-omap1 |
| 217 libdrm-exynos1 | 215 libdrm-exynos1 |
| 218 libdrm-freedreno1 | 216 libdrm-freedreno1 |
| 219 libasan0 | 217 libasan0 |
| 220 libubsan0 | 218 libubsan0 |
| 221 " | 219 " |
| 222 | 220 |
| 223 . ${SCRIPT_DIR}/sysroot-creator.sh | 221 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |