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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 zlib1g | 195 zlib1g |
196 zlib1g-dev | 196 zlib1g-dev |
197 " | 197 " |
198 | 198 |
199 DEBIAN_PACKAGES_AMD64=" | 199 DEBIAN_PACKAGES_AMD64=" |
200 liblsan0 | 200 liblsan0 |
201 libtsan0 | 201 libtsan0 |
202 " | 202 " |
203 | 203 |
204 DEBIAN_PACKAGES_X86=" | 204 DEBIAN_PACKAGES_X86=" |
| 205 libasan0 |
| 206 libcilkrts5 |
| 207 libdrm-intel1 |
| 208 libitm1 |
205 libquadmath0 | 209 libquadmath0 |
206 libdrm-intel1 | |
207 libcilkrts5 | |
208 libitm1 | |
209 libasan0 | |
210 libubsan0 | 210 libubsan0 |
211 " | 211 " |
212 | 212 |
213 DEBIAN_PACKAGES_ARM=" | 213 DEBIAN_PACKAGES_ARM=" |
214 libdrm-omap1 | 214 libasan0 |
215 libdrm-exynos1 | 215 libdrm-exynos1 |
216 libdrm-freedreno1 | 216 libdrm-freedreno1 |
217 libasan0 | 217 libdrm-omap1 |
218 libubsan0 | 218 libubsan0 |
219 " | 219 " |
| 220 DEBIAN_PACKAGES_ARM64=" |
| 221 libdatrie1 |
| 222 libgmp10 |
| 223 libgraphite2-3 |
| 224 libhogweed2 |
| 225 libitm1 |
| 226 libnettle4 |
| 227 libthai0 |
| 228 " |
220 | 229 |
221 . ${SCRIPT_DIR}/sysroot-creator.sh | 230 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |