OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file contains the list of packages we install for Chrome OS developers. | 5 # This file contains the list of packages we install for Chrome OS developers. |
6 # One package per line | 6 # One package per line |
7 | 7 |
8 # To read these into a line in a script, do: | 8 # To read these into a line in a script, do: |
9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` | 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` |
10 # change "' '" to "','" for a comma separated list | 10 # change "' '" to "','" for a comma separated list |
(...skipping 17 matching lines...) Expand all Loading... |
28 pkg-config | 28 pkg-config |
29 | 29 |
30 # Other Chrome-build related packages. | 30 # Other Chrome-build related packages. |
31 ccache | 31 ccache |
32 distcc | 32 distcc |
33 libavahi-client3 | 33 libavahi-client3 |
34 libavahi-common-data | 34 libavahi-common-data |
35 libavahi-common3 | 35 libavahi-common3 |
36 | 36 |
37 # Packages needed by Chrome OS platform | 37 # Packages needed by Chrome OS platform |
38 libclutter-0.9-dev | 38 libclutter-1.0-dev |
39 libcurl4-openssl-dev | 39 libcurl4-openssl-dev |
40 libgtkmm-2.4-dev | 40 libgtkmm-2.4-dev |
41 libpam0g-dev | 41 libpam0g-dev |
42 libpcre++-dev | 42 libpcre++-dev |
43 libprotobuf-dev | 43 libprotobuf-dev |
44 libssl-dev | 44 libssl-dev |
45 libxml2-dev | 45 libxml2-dev |
46 x11-apps | 46 x11-apps |
47 | 47 |
48 # Packages needed by Chrome OS, now built from source | 48 # Packages needed by Chrome OS, now built from source |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 # Needed for chromiumos-build | 179 # Needed for chromiumos-build |
180 python-debian | 180 python-debian |
181 dpkg-cross | 181 dpkg-cross |
182 python-apt | 182 python-apt |
183 | 183 |
184 # Cross-compiler packages for ARM | 184 # Cross-compiler packages for ARM |
185 libmpfr-dev-armel-cross | 185 libmpfr-dev-armel-cross |
186 gfortran-4.4-arm-linux-gnueabi | 186 gfortran-4.4-arm-linux-gnueabi |
187 gobjc++-4.4-arm-linux-gnueabi | 187 gobjc++-4.4-arm-linux-gnueabi |
188 libstdc++6-4.4-pic-armel-cross | 188 libstdc++6-4.4-pic-armel-cross |
| 189 |
| 190 # Pull these manually to complete ubuntu-minimal without rsyslog |
| 191 adduser |
| 192 apt |
| 193 apt-utils |
| 194 bzip2 |
| 195 console-setup |
| 196 debconf |
| 197 dhcp3-client |
| 198 eject |
| 199 gnupg |
| 200 ifupdown |
| 201 initramfs-tools |
| 202 iproute |
| 203 iputils-ping |
| 204 kbd |
| 205 less |
| 206 libc6-i686 |
| 207 locales |
| 208 lsb-release |
| 209 makedev |
| 210 mawk |
| 211 module-init-tools |
| 212 net-tools |
| 213 netbase |
| 214 netcat |
| 215 ntpdate |
| 216 passwd |
| 217 procps |
| 218 python |
| 219 sudo |
| 220 tasksel |
| 221 tzdata |
| 222 ubuntu-keyring |
| 223 udev |
| 224 upstart |
| 225 vim-tiny |
| 226 whiptail |
OLD | NEW |