| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 # Distributed under the terms of the GNU General Public License v2 | 2 # Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 |
| 4 EAPI=2 | 4 EAPI=2 |
| 5 | 5 |
| 6 DESCRIPTION="Adds packages that are required for testing." | 6 DESCRIPTION="Adds packages that are required for testing." |
| 7 HOMEPAGE="http://src.chromium.org" | 7 HOMEPAGE="http://src.chromium.org" |
| 8 | 8 |
| 9 LICENSE="GPL-2" | 9 LICENSE="GPL-2" |
| 10 SLOT="0" | 10 SLOT="0" |
| 11 KEYWORDS="x86 arm" | 11 KEYWORDS="x86 arm" |
| 12 IUSE="+bluetooth" | 12 IUSE="+bluetooth" |
| 13 | 13 |
| 14 # Packages required to support autotest images. Dependencies here | 14 # Packages required to support autotest images. Dependencies here |
| 15 # are for packages that must be present on a local device and that | 15 # are for packages that must be present on a local device and that |
| 16 # are not downloaded by the autotest server. This includes both | 16 # are not downloaded by the autotest server. This includes both |
| 17 # packages relied on by the server, as well as packages relied on by | 17 # packages relied on by the server, as well as packages relied on by |
| 18 # specific tests. | 18 # specific tests. Libraries are installed in /usr/local/lib. |
| 19 # | 19 # |
| 20 # This package is not meant to capture tools useful for test debug; | 20 # This package is not meant to capture tools useful for test debug; |
| 21 # use the chromeos-dev package for that purpose. | 21 # use the chromeos-dev package for that purpose. |
| 22 # | 22 # |
| 23 # Note that some packages used by autotest are actually built by the | 23 # Note that some packages used by autotest are actually built by the |
| 24 # autotest package and downloaded by the server, regardless of | 24 # autotest package and downloaded by the server, regardless of |
| 25 # whether the package is present on the target device; those | 25 # whether the package is present on the target device; those |
| 26 # packages aren't listed here. | 26 # packages aren't listed here. |
| 27 # | 27 # |
| 28 # TODO(jrbarnette): It's not known definitively that the list | 28 # TODO(jrbarnette): It's not known definitively that the list |
| 29 # below contains no unneeded dependencies. More work is needed to | 29 # below contains no unneeded dependencies. More work is needed to |
| 30 # determine for sure that every package listed is actually used. | 30 # determine for sure that every package listed is actually used. |
| 31 RDEPEND="${RDEPEND} | 31 RDEPEND="${RDEPEND} |
| 32 app-admin/sudo | 32 app-admin/sudo |
| 33 app-arch/gzip | 33 app-arch/gzip |
| 34 app-arch/tar | 34 app-arch/tar |
| 35 app-crypt/tpm-tools | 35 app-crypt/tpm-tools |
| 36 chromeos-base/autox | 36 chromeos-base/autox |
| 37 chromeos-base/chromeos-factorytools | 37 chromeos-base/chromeos-factorytools |
| 38 chromeos-base/flimflam-test | 38 chromeos-base/flimflam-test |
| 39 chromeos-base/minifakedns | 39 chromeos-base/minifakedns |
| 40 x86? ( chromeos-base/modem-diagnostics ) | 40 x86? ( chromeos-base/modem-diagnostics ) |
| 41 x86? ( dev-java/icedtea6-bin ) | 41 x86? ( dev-java/icedtea6-bin ) |
| 42 dev-lang/python | 42 dev-lang/python |
| 43 dev-python/dbus-python | 43 dev-python/dbus-python |
| 44 dev-python/pygobject | 44 dev-python/pygobject |
| 45 dev-python/pygtk | 45 dev-python/pygtk |
| 46 media-gfx/imagemagick[png] | 46 media-gfx/imagemagick[png] |
| 47 media-gfx/perceptualdiff | 47 media-gfx/perceptualdiff |
| 48 media-libs/tiff |
| 48 net-analyzer/netperf | 49 net-analyzer/netperf |
| 49 net-misc/dhcp | 50 net-misc/dhcp |
| 50 net-misc/iperf | 51 net-misc/iperf |
| 51 net-misc/iputils | 52 net-misc/iputils |
| 52 net-misc/openssh | 53 net-misc/openssh |
| 53 net-misc/rsync | 54 net-misc/rsync |
| 54 bluetooth? ( net-wireless/bluez ) | 55 bluetooth? ( net-wireless/bluez ) |
| 55 sys-apps/coreutils | 56 sys-apps/coreutils |
| 56 sys-apps/findutils | 57 sys-apps/findutils |
| 57 x86? ( sys-apps/pciutils ) | 58 x86? ( sys-apps/pciutils ) |
| 58 x86? ( sys-apps/superiotool ) | 59 x86? ( sys-apps/superiotool ) |
| 59 sys-apps/shadow | 60 sys-apps/shadow |
| 60 sys-process/procps | 61 sys-process/procps |
| 61 sys-process/psmisc | 62 sys-process/psmisc |
| 62 sys-process/time | 63 sys-process/time |
| 64 virtual/glut |
| 63 x11-apps/setxkbmap | 65 x11-apps/setxkbmap |
| 64 x11-apps/xauth | 66 x11-apps/xauth |
| 65 x11-apps/xset | 67 x11-apps/xset |
| 66 x86? ( x11-misc/read-edid ) | 68 x86? ( x11-misc/read-edid ) |
| 67 x11-terms/rxvt-unicode | 69 x11-terms/rxvt-unicode |
| 68 " | 70 " |
| OLD | NEW |