Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py

Issue 2112743002: Move Mojo bots to chromium_fyi; remove mojo master. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add 'use_isolate': True and 'enable_swarming': True. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py b/scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py
deleted file mode 100644
index 91f645c84e0c479d88df22b8a5a8a134473c6281..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from . import steps
-
-SPEC = {
- 'builders': {
- 'Chromium Mojo Android': {
- 'chromium_config': 'android',
- 'chromium_apply_config': ['mb'],
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['android'],
- 'android_config': 'main_builder',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_PLATFORM': 'android',
- 'TARGET_ARCH': 'arm',
- 'TARGET_BITS': 32,
- },
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_instrumentation_test,
- steps.generate_isolated_script,
- steps.generate_script,
- ],
- 'bot_type': 'builder_tester',
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Chromium Mojo Linux': {
- 'chromium_config': 'chromium',
- 'chromium_apply_config': ['mb'],
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_PLATFORM': 'linux',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder_tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- steps.generate_isolated_script,
- ],
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Chromium Mojo Windows': {
- 'chromium_config': 'chromium',
- 'chromium_apply_config': ['mb'],
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_PLATFORM': 'win',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder_tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- steps.generate_isolated_script,
- ],
- 'testing': {
- 'platform': 'win',
- },
- },
- },
-}

Powered by Google App Engine
This is Rietveld 408576698