| Index: scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
|
| index ed8cfb919c6cbc70895d605e0427bd7a4f7dd5cd..afc1958fb69d81a87ca190d001bd1204181285c7 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
|
| @@ -124,6 +124,118 @@ SPEC = {
|
| 'enable_swarming': True,
|
| },
|
|
|
| + # for testing trusty
|
| + 'Linux Builder Trusty': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': [
|
| + 'mb',
|
| + 'ninja_confirm_noop',
|
| + 'archive_gpu_tests',
|
| + 'chrome_with_codecs'
|
| + ],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'compile_targets': [
|
| + 'chromium_swarm_tests',
|
| + ],
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'use_isolate': True,
|
| + 'enable_swarming': True,
|
| + 'checkout_dir': 'linux',
|
| + },
|
| + 'Linux Tests Trusty': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'parent_buildername': 'Linux Builder Trusty',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + },
|
| + 'Linux Builder Trusty (dbg)(32)': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Debug',
|
| + 'TARGET_BITS': 32,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'compile_targets': [
|
| + 'google_apis_unittests',
|
| + 'sync_integration_tests',
|
| + ],
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'use_isolate': True,
|
| + 'enable_swarming': True,
|
| + 'checkout_dir': 'linux',
|
| + # Temporary hack because the binaries are too large to be isolated.
|
| + 'GYP_DEFINES': {
|
| + 'fastbuild': 2,
|
| + },
|
| + },
|
| + 'Linux Tests Trusty (dbg)(1)(32)': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Debug',
|
| + 'TARGET_BITS': 32,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'parent_buildername': 'Linux Builder Trusty (dbg)(32)',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + },
|
| +
|
| + 'Linux Builder Trusty (dbg)': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Debug',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + 'use_isolate': True,
|
| + 'checkout_dir': 'linux',
|
| + },
|
| + 'Linux Tests Trusty (dbg)(1)': {
|
| + 'chromium_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Debug',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'parent_buildername': 'Linux Builder Trusty (dbg)',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + },
|
| +
|
| 'Android Arm64 Builder (dbg)': {
|
| 'chromium_config': 'android',
|
| 'chromium_apply_config': ['chrome_with_codecs', 'mb'],
|
|
|