| 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 inherit toolchain-funcs flag-o-matic cros-workon autotest | 6 inherit toolchain-funcs flag-o-matic cros-workon autotest |
| 7 | 7 |
| 8 DESCRIPTION="Autotest tests" | 8 DESCRIPTION="Autotest tests" |
| 9 HOMEPAGE="http://src.chromium.org" | 9 HOMEPAGE="http://src.chromium.org" |
| 10 SRC_URI="" | 10 SRC_URI="" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 # network_3GStressEnable | 37 # network_3GStressEnable |
| 38 # network_WiFiSmokeTest | 38 # network_WiFiSmokeTest |
| 39 # network_WifiAuthenticationTests | 39 # network_WifiAuthenticationTests |
| 40 CONFLICT="chromeos-base/autotest-private-0.2.0" | 40 CONFLICT="chromeos-base/autotest-private-0.2.0" |
| 41 PDEPEND="|| ( >$CONFLICT-r29 !!~$CONFLICT )" | 41 PDEPEND="|| ( >$CONFLICT-r29 !!~$CONFLICT )" |
| 42 RDEPEND=" | 42 RDEPEND=" |
| 43 chromeos-base/autotest-deps | 43 chromeos-base/autotest-deps |
| 44 chromeos-base/autotest-deps-iotools | 44 chromeos-base/autotest-deps-iotools |
| 45 chromeos-base/autotest-deps-libaio | 45 chromeos-base/autotest-deps-libaio |
| 46 chromeos-base/autotest-deps-glbench | 46 chromeos-base/autotest-deps-glbench |
| 47 chromeos-base/autotest-deps-piglit |
| 47 chromeos-base/flimflam-test | 48 chromeos-base/flimflam-test |
| 48 autox? ( chromeos-base/autox ) | 49 autox? ( chromeos-base/autox ) |
| 49 dev-python/pygobject | 50 dev-python/pygobject |
| 50 dev-python/pygtk | 51 dev-python/pygtk |
| 51 xset? ( x11-apps/xset ) | 52 xset? ( x11-apps/xset ) |
| 52 tpmtools? ( app-crypt/tpm-tools ) | 53 tpmtools? ( app-crypt/tpm-tools ) |
| 53 !!~$CONFLICT | 54 !!~$CONFLICT |
| 54 " | 55 " |
| 55 | 56 |
| 56 RDEPEND="${RDEPEND} | 57 RDEPEND="${RDEPEND} |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 +tests_desktopui_UrlFetch | 97 +tests_desktopui_UrlFetch |
| 97 +tests_desktopui_V8Bench | 98 +tests_desktopui_V8Bench |
| 98 +tests_desktopui_WindowManagerFocusNewWindows | 99 +tests_desktopui_WindowManagerFocusNewWindows |
| 99 +tests_desktopui_WindowManagerHotkeys | 100 +tests_desktopui_WindowManagerHotkeys |
| 100 tests_example_UnitTest | 101 tests_example_UnitTest |
| 101 +tests_firmware_RomSize | 102 +tests_firmware_RomSize |
| 102 tests_firmware_VbootCrypto | 103 tests_firmware_VbootCrypto |
| 103 +tests_graphics_GLAPICheck | 104 +tests_graphics_GLAPICheck |
| 104 +tests_graphics_GLBench | 105 +tests_graphics_GLBench |
| 105 +tests_graphics_O3DSelenium | 106 +tests_graphics_O3DSelenium |
| 107 +tests_graphics_Piglit |
| 106 +tests_graphics_SanAngeles | 108 +tests_graphics_SanAngeles |
| 107 +tests_graphics_TearTest | 109 +tests_graphics_TearTest |
| 108 +tests_graphics_WebGLConformance | 110 +tests_graphics_WebGLConformance |
| 109 +tests_graphics_WindowManagerGraphicsCapture | 111 +tests_graphics_WindowManagerGraphicsCapture |
| 110 +tests_hardware_Ath3k | 112 +tests_hardware_Ath3k |
| 111 +tests_hardware_Backlight | 113 +tests_hardware_Backlight |
| 112 +tests_hardware_BluetoothSemiAuto | 114 +tests_hardware_BluetoothSemiAuto |
| 113 +tests_hardware_ch7036 | 115 +tests_hardware_ch7036 |
| 114 +tests_hardware_Components | 116 +tests_hardware_Components |
| 115 +tests_hardware_DeveloperRecovery | 117 +tests_hardware_DeveloperRecovery |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 269 |
| 268 CROS_WORKON_PROJECT=autotest | 270 CROS_WORKON_PROJECT=autotest |
| 269 CROS_WORKON_LOCALNAME=../third_party/autotest | 271 CROS_WORKON_LOCALNAME=../third_party/autotest |
| 270 CROS_WORKON_SUBDIR=files | 272 CROS_WORKON_SUBDIR=files |
| 271 | 273 |
| 272 AUTOTEST_DEPS_LIST="" | 274 AUTOTEST_DEPS_LIST="" |
| 273 AUTOTEST_CONFIG_LIST="" | 275 AUTOTEST_CONFIG_LIST="" |
| 274 AUTOTEST_PROFILERS_LIST="" | 276 AUTOTEST_PROFILERS_LIST="" |
| 275 | 277 |
| 276 AUTOTEST_FILE_MASK="*.a *.tar.bz2 *.tbz2 *.tgz *.tar.gz" | 278 AUTOTEST_FILE_MASK="*.a *.tar.bz2 *.tbz2 *.tgz *.tar.gz" |
| OLD | NEW |