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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
210 libubsan0 | 210 libubsan0 |
211 " | 211 " |
212 | 212 |
213 DEBIAN_PACKAGES_ARM=" | 213 DEBIAN_PACKAGES_ARM=" |
214 libdrm-omap1 | 214 libdrm-omap1 |
215 libdrm-exynos1 | 215 libdrm-exynos1 |
216 libdrm-freedreno1 | 216 libdrm-freedreno1 |
217 libasan0 | 217 libasan0 |
218 libubsan0 | 218 libubsan0 |
219 " | 219 " |
220 DEBIAN_PACKAGES_ARM64=" | |
221 libitm1 | |
Lei Zhang
2016/05/27 21:04:46
Would you mind sorting this in alphabetical order,
| |
222 libthai0 | |
223 libnettle4 | |
224 libhogweed2 | |
225 libgmp10 | |
226 libgraphite2-3 | |
227 libdatrie1 | |
228 " | |
220 | 229 |
221 . ${SCRIPT_DIR}/sysroot-creator.sh | 230 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |