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. |
sosa
2011/04/11 21:12:30
This isn't necessarily generic enough. Perhaps an
| |
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 x86? ( chromeos-base/autotest-deps-piglit ) | |
sosa
2011/04/11 21:12:30
Don't put this here. You have 3 copies of it arou
| |
36 chromeos-base/autox | 37 chromeos-base/autox |
37 chromeos-base/chromeos-factorytools | 38 chromeos-base/chromeos-factorytools |
38 chromeos-base/flimflam-test | 39 chromeos-base/flimflam-test |
39 chromeos-base/minifakedns | 40 chromeos-base/minifakedns |
40 x86? ( chromeos-base/modem-diagnostics ) | 41 x86? ( chromeos-base/modem-diagnostics ) |
41 x86? ( dev-java/icedtea6-bin ) | 42 x86? ( dev-java/icedtea6-bin ) |
42 dev-lang/python | 43 dev-lang/python |
43 dev-python/dbus-python | 44 dev-python/dbus-python |
44 dev-python/pygobject | 45 dev-python/pygobject |
45 dev-python/pygtk | 46 dev-python/pygtk |
(...skipping 13 matching lines...) Expand all Loading... | |
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 |
63 x11-apps/setxkbmap | 64 x11-apps/setxkbmap |
64 x11-apps/xauth | 65 x11-apps/xauth |
65 x11-apps/xset | 66 x11-apps/xset |
66 x86? ( x11-misc/read-edid ) | 67 x86? ( x11-misc/read-edid ) |
67 x11-terms/rxvt-unicode | 68 x11-terms/rxvt-unicode |
68 " | 69 " |
OLD | NEW |