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