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=$(dirname $0) | 6 SCRIPT_DIR=$(dirname $0) |
7 | 7 |
8 DISTRO=ubuntu | 8 DISTRO=ubuntu |
9 DIST=trusty | 9 DIST=trusty |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 libcap2 | 37 libcap2 |
38 libcomerr2 | 38 libcomerr2 |
39 libcups2 | 39 libcups2 |
40 libcups2-dev | 40 libcups2-dev |
41 libdbus-1-3 | 41 libdbus-1-3 |
42 libdbus-1-dev | 42 libdbus-1-dev |
43 libdbus-glib-1-2 | 43 libdbus-glib-1-2 |
44 libdrm2 | 44 libdrm2 |
45 libelf1 | 45 libelf1 |
46 libelf-dev | 46 libelf-dev |
| 47 libexif12 |
| 48 libexif-dev |
47 libexpat1 | 49 libexpat1 |
48 libexpat1-dev | 50 libexpat1-dev |
49 libffi6 | 51 libffi6 |
50 libfontconfig1 | 52 libfontconfig1 |
51 libfontconfig1-dev | 53 libfontconfig1-dev |
52 libfreetype6 | 54 libfreetype6 |
53 libfreetype6-dev | 55 libfreetype6-dev |
54 libgcc1 | 56 libgcc1 |
55 libgconf-2-4 | 57 libgconf-2-4 |
56 libgconf2-4 | 58 libgconf2-4 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 x11proto-render-dev | 174 x11proto-render-dev |
173 x11proto-scrnsaver-dev | 175 x11proto-scrnsaver-dev |
174 x11proto-xext-dev | 176 x11proto-xext-dev |
175 zlib1g | 177 zlib1g |
176 zlib1g-dev | 178 zlib1g-dev |
177 " | 179 " |
178 | 180 |
179 DEBIAN_PACKAGES_X86="libquadmath0" | 181 DEBIAN_PACKAGES_X86="libquadmath0" |
180 | 182 |
181 . ${SCRIPT_DIR}/sysroot-creator.sh | 183 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |