| 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=ubuntu | 8 DISTRO=ubuntu |
| 9 DIST=trusty | 9 DIST=trusty |
| 10 DIST_UPDATES=trusty-updates | 10 DIST_UPDATES=trusty-updates |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 libdrm2 | 54 libdrm2 |
| 55 libelf1 | 55 libelf1 |
| 56 libelf-dev | 56 libelf-dev |
| 57 libexpat1 | 57 libexpat1 |
| 58 libexpat1-dev | 58 libexpat1-dev |
| 59 libffi6 | 59 libffi6 |
| 60 libfontconfig1 | 60 libfontconfig1 |
| 61 libfontconfig1-dev | 61 libfontconfig1-dev |
| 62 libfreetype6 | 62 libfreetype6 |
| 63 libfreetype6-dev | 63 libfreetype6-dev |
| 64 libgbm1 |
| 65 libgbm-dev |
| 64 libgcc1 | 66 libgcc1 |
| 65 libgconf-2-4 | 67 libgconf-2-4 |
| 66 libgconf2-4 | 68 libgconf2-4 |
| 67 libgconf2-dev | 69 libgconf2-dev |
| 68 libgcrypt11 | 70 libgcrypt11 |
| 69 libgcrypt11-dev | 71 libgcrypt11-dev |
| 70 libgdk-pixbuf2.0-0 | 72 libgdk-pixbuf2.0-0 |
| 71 libgdk-pixbuf2.0-dev | 73 libgdk-pixbuf2.0-dev |
| 72 libgl1-mesa-dev | 74 libgl1-mesa-dev |
| 73 libgl1-mesa-glx | 75 libgl1-mesa-glx |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 x11proto-render-dev | 187 x11proto-render-dev |
| 186 x11proto-scrnsaver-dev | 188 x11proto-scrnsaver-dev |
| 187 x11proto-xext-dev | 189 x11proto-xext-dev |
| 188 zlib1g | 190 zlib1g |
| 189 zlib1g-dev | 191 zlib1g-dev |
| 190 " | 192 " |
| 191 | 193 |
| 192 DEBIAN_PACKAGES_X86="libquadmath0" | 194 DEBIAN_PACKAGES_X86="libquadmath0" |
| 193 | 195 |
| 194 . "${SCRIPT_DIR}/sysroot-creator.sh" | 196 . "${SCRIPT_DIR}/sysroot-creator.sh" |
| OLD | NEW |