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="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 libelf1 | 65 libelf1 |
66 libelf-dev | 66 libelf-dev |
67 libexpat1 | 67 libexpat1 |
68 libexpat1-dev | 68 libexpat1-dev |
69 libffi6 | 69 libffi6 |
70 libffi-dev | 70 libffi-dev |
71 libfontconfig1 | 71 libfontconfig1 |
72 libfontconfig1-dev | 72 libfontconfig1-dev |
73 libfreetype6 | 73 libfreetype6 |
74 libfreetype6-dev | 74 libfreetype6-dev |
| 75 libgbm1 |
| 76 libgbm-dev |
75 libgcc1 | 77 libgcc1 |
76 libgconf-2-4 | 78 libgconf-2-4 |
77 libgconf2-4 | 79 libgconf2-4 |
78 libgconf2-dev | 80 libgconf2-dev |
79 libgcrypt11 | 81 libgcrypt11 |
80 libgcrypt11-dev | 82 libgcrypt11-dev |
81 libgdk-pixbuf2.0-0 | 83 libgdk-pixbuf2.0-0 |
82 libgdk-pixbuf2.0-dev | 84 libgdk-pixbuf2.0-dev |
83 libgl1-mesa-dev | 85 libgl1-mesa-dev |
84 libgl1-mesa-glx | 86 libgl1-mesa-glx |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 x11proto-scrnsaver-dev | 203 x11proto-scrnsaver-dev |
202 x11proto-xext-dev | 204 x11proto-xext-dev |
203 zlib1g | 205 zlib1g |
204 zlib1g-dev | 206 zlib1g-dev |
205 " | 207 " |
206 | 208 |
207 DEBIAN_PACKAGES_X86="libquadmath0" | 209 DEBIAN_PACKAGES_X86="libquadmath0" |
208 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 210 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
209 | 211 |
210 . "${SCRIPT_DIR}/sysroot-creator.sh" | 212 . "${SCRIPT_DIR}/sysroot-creator.sh" |
OLD | NEW |