| 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 $0) && pwd) | 6 SCRIPT_DIR=$(cd $(dirname $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 14 matching lines...) Expand all Loading... |
| 25 HAS_ARCH_MIPS=1 | 25 HAS_ARCH_MIPS=1 |
| 26 | 26 |
| 27 # Sysroot packages: these are the packages needed to build chrome. | 27 # Sysroot packages: these are the packages needed to build chrome. |
| 28 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated | 28 # NOTE: When DEBIAN_PACKAGES is modified, the packagelist files must be updated |
| 29 # by running this script in GeneratePackageList mode. | 29 # by running this script in GeneratePackageList mode. |
| 30 DEBIAN_PACKAGES="\ | 30 DEBIAN_PACKAGES="\ |
| 31 comerr-dev | 31 comerr-dev |
| 32 krb5-multidev | 32 krb5-multidev |
| 33 libasound2 | 33 libasound2 |
| 34 libasound2-dev | 34 libasound2-dev |
| 35 libatk-bridge2.0-0 |
| 36 libatk-bridge2.0-dev |
| 35 libatk1.0-0 | 37 libatk1.0-0 |
| 36 libatk1.0-dev | 38 libatk1.0-dev |
| 39 libatspi2.0-0 |
| 40 libatspi2.0-dev |
| 37 libattr1 | 41 libattr1 |
| 38 libavahi-client3 | 42 libavahi-client3 |
| 39 libavahi-common3 | 43 libavahi-common3 |
| 40 libbluetooth3 | 44 libbluetooth3 |
| 41 libbluetooth-dev | 45 libbluetooth-dev |
| 42 libbrlapi0.6 | 46 libbrlapi0.6 |
| 43 libbrlapi-dev | 47 libbrlapi-dev |
| 44 libc6 | 48 libc6 |
| 45 libc6-dev | 49 libc6-dev |
| 46 libcairo2 | 50 libcairo2 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 libxdmcp6 | 183 libxdmcp6 |
| 180 libxdmcp-dev | 184 libxdmcp-dev |
| 181 libxext6 | 185 libxext6 |
| 182 libxext-dev | 186 libxext-dev |
| 183 libxfixes3 | 187 libxfixes3 |
| 184 libxfixes-dev | 188 libxfixes-dev |
| 185 libxi6 | 189 libxi6 |
| 186 libxi-dev | 190 libxi-dev |
| 187 libxinerama1 | 191 libxinerama1 |
| 188 libxinerama-dev | 192 libxinerama-dev |
| 193 libxkbcommon0 |
| 194 libxkbcommon-dev |
| 189 libxrandr2 | 195 libxrandr2 |
| 190 libxrandr-dev | 196 libxrandr-dev |
| 191 libxrender1 | 197 libxrender1 |
| 192 libxrender-dev | 198 libxrender-dev |
| 193 libxss1 | 199 libxss1 |
| 194 libxss-dev | 200 libxss-dev |
| 195 libxt6 | 201 libxt6 |
| 196 libxt-dev | 202 libxt-dev |
| 197 libxtst6 | 203 libxtst6 |
| 198 libxtst-dev | 204 libxtst-dev |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 libdatrie1 | 247 libdatrie1 |
| 242 libgmp10 | 248 libgmp10 |
| 243 libgraphite2-3 | 249 libgraphite2-3 |
| 244 libhogweed2 | 250 libhogweed2 |
| 245 libitm1 | 251 libitm1 |
| 246 libnettle4 | 252 libnettle4 |
| 247 libthai0 | 253 libthai0 |
| 248 " | 254 " |
| 249 | 255 |
| 250 . ${SCRIPT_DIR}/sysroot-creator.sh | 256 . ${SCRIPT_DIR}/sysroot-creator.sh |
| OLD | NEW |