OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
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 "${BASH_SOURCE[0]}" )" && pwd )" | 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
7 | 7 |
8 DISTRO=debian | 8 DISTRO=debian |
9 DIST=wheezy | 9 DIST=wheezy |
10 DIST_UPDATES=wheezy-updates | 10 DIST_UPDATES=wheezy-updates |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 libelf1 | 59 libelf1 |
60 libelf-dev | 60 libelf-dev |
61 libexpat1 | 61 libexpat1 |
62 libexpat1-dev | 62 libexpat1-dev |
63 libffi5 | 63 libffi5 |
64 libffi-dev | 64 libffi-dev |
65 libfontconfig1 | 65 libfontconfig1 |
66 libfontconfig1-dev | 66 libfontconfig1-dev |
67 libfreetype6 | 67 libfreetype6 |
68 libfreetype6-dev | 68 libfreetype6-dev |
| 69 libgbm1 |
| 70 libgbm-dev |
69 libgcc1 | 71 libgcc1 |
70 libgconf-2-4 | 72 libgconf-2-4 |
71 libgconf2-4 | 73 libgconf2-4 |
72 libgconf2-dev | 74 libgconf2-dev |
73 libgcrypt11 | 75 libgcrypt11 |
74 libgcrypt11-dev | 76 libgcrypt11-dev |
75 libgdk-pixbuf2.0-0 | 77 libgdk-pixbuf2.0-0 |
76 libgdk-pixbuf2.0-dev | 78 libgdk-pixbuf2.0-dev |
77 libgl1-mesa-dev | 79 libgl1-mesa-dev |
78 libgl1-mesa-glx | 80 libgl1-mesa-glx |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 x11proto-xinerama-dev | 199 x11proto-xinerama-dev |
198 zlib1g | 200 zlib1g |
199 zlib1g-dev | 201 zlib1g-dev |
200 " | 202 " |
201 | 203 |
202 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" | 204 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" |
203 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 205 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
204 DEBIAN_PACKAGES_AMD64="" | 206 DEBIAN_PACKAGES_AMD64="" |
205 | 207 |
206 . "${SCRIPT_DIR}/sysroot-creator.sh" | 208 . "${SCRIPT_DIR}/sysroot-creator.sh" |
OLD | NEW |