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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 libspeechd2 | 116 libspeechd2 |
117 libspeechd-dev | 117 libspeechd-dev |
118 libssl1.0.0 | 118 libssl1.0.0 |
119 libssl-dev | 119 libssl-dev |
120 libstdc++6 | 120 libstdc++6 |
121 libstdc++-4.8-dev | 121 libstdc++-4.8-dev |
122 libtasn1-6 | 122 libtasn1-6 |
123 libx11-6 | 123 libx11-6 |
124 libx11-dev | 124 libx11-dev |
125 libx11-xcb1 | 125 libx11-xcb1 |
| 126 libx11-xcb-dev |
126 libxau6 | 127 libxau6 |
127 libxau-dev | 128 libxau-dev |
128 libxcb1 | 129 libxcb1 |
129 libxcb1-dev | 130 libxcb1-dev |
130 libxcb-glx0 | 131 libxcb-glx0 |
131 libxcb-render0 | 132 libxcb-render0 |
132 libxcb-render0-dev | 133 libxcb-render0-dev |
133 libxcb-shm0 | 134 libxcb-shm0 |
134 libxcb-shm0-dev | 135 libxcb-shm0-dev |
135 libxcomposite1 | 136 libxcomposite1 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 x11proto-render-dev | 173 x11proto-render-dev |
173 x11proto-scrnsaver-dev | 174 x11proto-scrnsaver-dev |
174 x11proto-xext-dev | 175 x11proto-xext-dev |
175 zlib1g | 176 zlib1g |
176 zlib1g-dev | 177 zlib1g-dev |
177 " | 178 " |
178 | 179 |
179 DEBIAN_PACKAGES_X86="libquadmath0" | 180 DEBIAN_PACKAGES_X86="libquadmath0" |
180 | 181 |
181 . ${SCRIPT_DIR}/sysroot-creator.sh | 182 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |