OLD | NEW |
---|---|
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 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 CONFLICT_LIST="chromeos-base/autotest-tests-0.0.1-r335" | 6 CONFLICT_LIST="chromeos-base/autotest-tests-0.0.1-r335" |
7 inherit toolchain-funcs flag-o-matic cros-workon autotest conflict | 7 inherit toolchain-funcs flag-o-matic cros-workon autotest conflict |
8 | 8 |
9 DESCRIPTION="Autotest Factory tests" | 9 DESCRIPTION="Autotest Factory tests" |
10 HOMEPAGE="http://src.chromium.org" | 10 HOMEPAGE="http://src.chromium.org" |
11 SRC_URI="" | 11 SRC_URI="" |
12 LICENSE="GPL-2" | 12 LICENSE="GPL-2" |
13 SLOT="0" | 13 SLOT="0" |
14 KEYWORDS="~x86 ~arm ~amd64" | 14 KEYWORDS="~x86 ~arm ~amd64" |
15 | 15 |
16 IUSE="+xset hardened" | 16 IUSE="+xset hardened" |
17 # Enable autotest by default. | 17 # Enable autotest by default. |
18 IUSE="${IUSE} +autotest" | 18 IUSE="${IUSE} +autotest" |
19 | 19 |
20 # Factory tests require locally installed deps, which are called out in | 20 # Factory tests require locally installed deps, which are called out in |
21 # autotest-factory-deps. | 21 # autotest-factory-deps. |
22 RDEPEND=" | 22 RDEPEND=" |
23 chromeos-base/autotest-deps-iotools | 23 chromeos-base/autotest-deps-iotools |
24 chromeos-base/autotest-deps-libaio | 24 chromeos-base/autotest-deps-libaio |
25 chromeos-base/autotest-deps-glbench | 25 chromeos-base/autotest-deps-glbench |
26 chromeos-base/autotest-deps-piglit | |
zbehan
2011/04/11 23:37:20
I think this dependency is unnecessary as well. Un
| |
26 chromeos-base/autotest-private-board | 27 chromeos-base/autotest-private-board |
27 chromeos-base/flimflam | 28 chromeos-base/flimflam |
28 chromeos-base/flimflam-test | 29 chromeos-base/flimflam-test |
29 >=chromeos-base/vpd-0.0.1-r11 | 30 >=chromeos-base/vpd-0.0.1-r11 |
30 dev-python/pygobject | 31 dev-python/pygobject |
31 dev-python/pygtk | 32 dev-python/pygtk |
32 xset? ( x11-apps/xset ) | 33 xset? ( x11-apps/xset ) |
33 " | 34 " |
34 | 35 |
35 DEPEND="${RDEPEND}" | 36 DEPEND="${RDEPEND}" |
(...skipping 28 matching lines...) Expand all Loading... | |
64 | 65 |
65 CROS_WORKON_PROJECT=autotest | 66 CROS_WORKON_PROJECT=autotest |
66 CROS_WORKON_LOCALNAME=../third_party/autotest | 67 CROS_WORKON_LOCALNAME=../third_party/autotest |
67 CROS_WORKON_SUBDIR=files | 68 CROS_WORKON_SUBDIR=files |
68 | 69 |
69 AUTOTEST_DEPS_LIST="" | 70 AUTOTEST_DEPS_LIST="" |
70 AUTOTEST_CONFIG_LIST="" | 71 AUTOTEST_CONFIG_LIST="" |
71 AUTOTEST_PROFILERS_LIST="" | 72 AUTOTEST_PROFILERS_LIST="" |
72 | 73 |
73 AUTOTEST_FILE_MASK="*.a *.tar.bz2 *.tbz2 *.tgz *.tar.gz" | 74 AUTOTEST_FILE_MASK="*.a *.tar.bz2 *.tbz2 *.tgz *.tar.gz" |
OLD | NEW |