OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 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=$(dirname $0) | 6 SCRIPT_DIR=$(dirname $0) |
7 | 7 |
8 DISTRO=ubuntu | 8 DISTRO=ubuntu |
9 DIST=precise | 9 DIST=precise |
10 DIST_UPDATES=precise-updates | 10 DIST_UPDATES=precise-updates |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 x11proto-randr-dev | 186 x11proto-randr-dev |
187 x11proto-record-dev | 187 x11proto-record-dev |
188 x11proto-render-dev | 188 x11proto-render-dev |
189 x11proto-scrnsaver-dev | 189 x11proto-scrnsaver-dev |
190 x11proto-xext-dev | 190 x11proto-xext-dev |
191 zlib1g | 191 zlib1g |
192 zlib1g-dev | 192 zlib1g-dev |
193 " | 193 " |
194 | 194 |
195 DEBIAN_PACKAGES_X86="libquadmath0" | 195 DEBIAN_PACKAGES_X86="libquadmath0" |
| 196 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
196 | 197 |
197 . ${SCRIPT_DIR}/sysroot-creator.sh | 198 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |