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=jessie | 9 DIST=jessie |
10 PACKAGES_EXT=xz | 10 PACKAGES_EXT=xz |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 libssl1.0.0 | 134 libssl1.0.0 |
135 libssl-dev | 135 libssl-dev |
136 libstdc++6 | 136 libstdc++6 |
137 libstdc++-4.8-dev | 137 libstdc++-4.8-dev |
138 libtasn1-6 | 138 libtasn1-6 |
139 libudev-dev | 139 libudev-dev |
140 libudev1 | 140 libudev1 |
141 libx11-6 | 141 libx11-6 |
142 libx11-dev | 142 libx11-dev |
143 libx11-xcb1 | 143 libx11-xcb1 |
| 144 libx11-xcb-dev |
144 libxau6 | 145 libxau6 |
145 libxau-dev | 146 libxau-dev |
146 libxcb1 | 147 libxcb1 |
147 libxcb1-dev | 148 libxcb1-dev |
148 libxcb-glx0 | 149 libxcb-glx0 |
149 libxcb-render0 | 150 libxcb-render0 |
150 libxcb-render0-dev | 151 libxcb-render0-dev |
151 libxcb-shm0 | 152 libxcb-shm0 |
152 libxcb-shm0-dev | 153 libxcb-shm0-dev |
153 libxcomposite1 | 154 libxcomposite1 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 libdatrie1 | 222 libdatrie1 |
222 libgmp10 | 223 libgmp10 |
223 libgraphite2-3 | 224 libgraphite2-3 |
224 libhogweed2 | 225 libhogweed2 |
225 libitm1 | 226 libitm1 |
226 libnettle4 | 227 libnettle4 |
227 libthai0 | 228 libthai0 |
228 " | 229 " |
229 | 230 |
230 . ${SCRIPT_DIR}/sysroot-creator.sh | 231 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |