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=$(cd $(dirname $0) && pwd) | 6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) |
7 | 7 |
8 DISTRO=debian | 8 DISTRO=debian |
9 DIST=wheezy | 9 DIST=wheezy |
10 APT_REPO=http://http.us.debian.org/debian | 10 APT_REPO=http://http.us.debian.org/debian |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 libssl1.0.0 | 122 libssl1.0.0 |
123 libssl-dev | 123 libssl-dev |
124 libstdc++6 | 124 libstdc++6 |
125 libstdc++6-4.6-dev | 125 libstdc++6-4.6-dev |
126 libtasn1-3 | 126 libtasn1-3 |
127 libudev-dev | 127 libudev-dev |
128 libudev0 | 128 libudev0 |
129 libx11-6 | 129 libx11-6 |
130 libx11-dev | 130 libx11-dev |
131 libx11-xcb1 | 131 libx11-xcb1 |
| 132 libx11-xcb-dev |
132 libxau6 | 133 libxau6 |
133 libxau-dev | 134 libxau-dev |
134 libxcb1 | 135 libxcb1 |
135 libxcb1-dev | 136 libxcb1-dev |
136 libxcb-glx0 | 137 libxcb-glx0 |
137 libxcb-render0 | 138 libxcb-render0 |
138 libxcb-render0-dev | 139 libxcb-render0-dev |
139 libxcb-shm0 | 140 libxcb-shm0 |
140 libxcb-shm0-dev | 141 libxcb-shm0-dev |
141 libxcomposite1 | 142 libxcomposite1 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 x11proto-xinerama-dev | 183 x11proto-xinerama-dev |
183 zlib1g | 184 zlib1g |
184 zlib1g-dev | 185 zlib1g-dev |
185 " | 186 " |
186 | 187 |
187 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" | 188 DEBIAN_PACKAGES_X86="libquadmath0 libdrm-intel1" |
188 DEBIAN_PACKAGES_ARM="libdrm-omap1" | 189 DEBIAN_PACKAGES_ARM="libdrm-omap1" |
189 DEBIAN_PACKAGES_AMD64="" | 190 DEBIAN_PACKAGES_AMD64="" |
190 | 191 |
191 . ${SCRIPT_DIR}/sysroot-creator.sh | 192 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |