| 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 DIST=trusty | 8 DIST=trusty |
| 9 | 9 |
| 10 # This is where we get all the debian packages from. | 10 # This is where we get all the debian packages from. |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 libpulse-dev \ | 115 libpulse-dev \ |
| 116 libpulse-mainloop-glib0 \ | 116 libpulse-mainloop-glib0 \ |
| 117 libselinux1 \ | 117 libselinux1 \ |
| 118 libspeechd2 \ | 118 libspeechd2 \ |
| 119 libspeechd-dev \ | 119 libspeechd-dev \ |
| 120 libssl1.0.0 \ | 120 libssl1.0.0 \ |
| 121 libssl-dev \ | 121 libssl-dev \ |
| 122 libstdc++6 \ | 122 libstdc++6 \ |
| 123 libstdc++-4.8-dev \ | 123 libstdc++-4.8-dev \ |
| 124 libtasn1-6 \ | 124 libtasn1-6 \ |
| 125 libudev1 \ | |
| 126 libudev-dev \ | |
| 127 libx11-6 \ | 125 libx11-6 \ |
| 128 libx11-dev \ | 126 libx11-dev \ |
| 129 libx11-xcb1 \ | 127 libx11-xcb1 \ |
| 130 libxau6 \ | 128 libxau6 \ |
| 131 libxau-dev \ | 129 libxau-dev \ |
| 132 libxcb1 \ | 130 libxcb1 \ |
| 133 libxcb1-dev \ | 131 libxcb1-dev \ |
| 134 libxcb-glx0 \ | 132 libxcb-glx0 \ |
| 135 libxcb-render0 \ | 133 libxcb-render0 \ |
| 136 libxcb-render0-dev \ | 134 libxcb-render0-dev \ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 x11proto-record-dev \ | 173 x11proto-record-dev \ |
| 176 x11proto-render-dev \ | 174 x11proto-render-dev \ |
| 177 x11proto-scrnsaver-dev \ | 175 x11proto-scrnsaver-dev \ |
| 178 x11proto-xext-dev \ | 176 x11proto-xext-dev \ |
| 179 zlib1g \ | 177 zlib1g \ |
| 180 zlib1g-dev" | 178 zlib1g-dev" |
| 181 | 179 |
| 182 DEBIAN_PACKAGES_X86="libquadmath0" | 180 DEBIAN_PACKAGES_X86="libquadmath0" |
| 183 | 181 |
| 184 . ${SCRIPT_DIR}/sysroot-creator.sh | 182 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |