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

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

Issue 1737843003: Use regular chromium recipes for Chromium Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove 'ninja_confirm_noop' config option. Created 4 years, 10 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
new file mode 100644
index 0000000000000000000000000000000000000000..91f645c84e0c479d88df22b8a5a8a134473c6281
--- /dev/null
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py
@@ -0,0 +1,71 @@
+# 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