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 |
54 libexpat1 | 56 libexpat1 |
55 libexpat1-dev | 57 libexpat1-dev |
56 libffi6 | 58 libffi6 |
57 libffi-dev | 59 libffi-dev |
58 libfontconfig1 | 60 libfontconfig1 |
59 libfontconfig1-dev | 61 libfontconfig1-dev |
60 libfreetype6 | 62 libfreetype6 |
61 libfreetype6-dev | 63 libfreetype6-dev |
62 libgcc-4.8-dev | 64 libgcc-4.8-dev |
63 libgcc1 | 65 libgcc1 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 214 |
213 DEBIAN_PACKAGES_ARM=" | 215 DEBIAN_PACKAGES_ARM=" |
214 libdrm-omap1 | 216 libdrm-omap1 |
215 libdrm-exynos1 | 217 libdrm-exynos1 |
216 libdrm-freedreno1 | 218 libdrm-freedreno1 |
217 libasan0 | 219 libasan0 |
218 libubsan0 | 220 libubsan0 |
219 " | 221 " |
220 | 222 |
221 . ${SCRIPT_DIR}/sysroot-creator.sh | 223 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |