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=debian | 8 DISTRO=debian |
9 DIST=jessie | 9 DIST=jessie |
10 DIST_UPDATES=jessie-updates | 10 DIST_UPDATES=jessie-updates |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 libelf1 | 68 libelf1 |
69 libelf-dev | 69 libelf-dev |
70 libexpat1 | 70 libexpat1 |
71 libexpat1-dev | 71 libexpat1-dev |
72 libffi6 | 72 libffi6 |
73 libffi-dev | 73 libffi-dev |
74 libfontconfig1 | 74 libfontconfig1 |
75 libfontconfig1-dev | 75 libfontconfig1-dev |
76 libfreetype6 | 76 libfreetype6 |
77 libfreetype6-dev | 77 libfreetype6-dev |
| 78 libgbm1 |
| 79 libgbm-dev |
78 libgcc-4.8-dev | 80 libgcc-4.8-dev |
79 libgcc1 | 81 libgcc1 |
80 libgconf-2-4 | 82 libgconf-2-4 |
81 libgconf2-4 | 83 libgconf2-4 |
82 libgconf2-dev | 84 libgconf2-dev |
83 libgcrypt20 | 85 libgcrypt20 |
84 libgcrypt20-dev | 86 libgcrypt20-dev |
85 libgdk-pixbuf2.0-0 | 87 libgdk-pixbuf2.0-0 |
86 libgdk-pixbuf2.0-dev | 88 libgdk-pixbuf2.0-dev |
87 libgl1-mesa-dev | 89 libgl1-mesa-dev |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 libdatrie1 | 257 libdatrie1 |
256 libgmp10 | 258 libgmp10 |
257 libgraphite2-3 | 259 libgraphite2-3 |
258 libhogweed2 | 260 libhogweed2 |
259 libitm1 | 261 libitm1 |
260 libnettle4 | 262 libnettle4 |
261 libthai0 | 263 libthai0 |
262 " | 264 " |
263 | 265 |
264 . "${SCRIPT_DIR}/sysroot-creator.sh" | 266 . "${SCRIPT_DIR}/sysroot-creator.sh" |
OLD | NEW |