Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-jessie.sh

Issue 1997993003: Add support for Jessie ARM64 sysroot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot to sort DEBIAN_PACKAGES_X86 variable in last patch set Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698