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

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: Created 4 years, 7 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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