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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 # Packages needed to build wireless tools | 173 # Packages needed to build wireless tools |
174 libnl-dev | 174 libnl-dev |
175 | 175 |
176 # Packages needed to build chromeos-minijail | 176 # Packages needed to build chromeos-minijail |
177 libcap-dev | 177 libcap-dev |
178 | 178 |
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 |
| 184 # Cross-compiler packages for ARM |
| 185 libmpfr-dev-armel-cross |
| 186 gfortran-4.4-arm-linux-gnueabi |
| 187 gobjc++-4.4-arm-linux-gnueabi |
| 188 libstdc++6-4.4-pic-armel-cross |
OLD | NEW |