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

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

Issue 2098943002: Rename Mac/Win GN builders to GYP builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix masters_recipes_test.py to handle deprecated builders 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_mac.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_mac.py b/scripts/slave/recipe_modules/chromium_tests/chromium_mac.py
index 7053f170cc1fe54b8d50e367f044d8b715ac74e4..ece170b454193f65912b3d9dfa701657684f792e 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_mac.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_mac.py
@@ -102,6 +102,25 @@ SPEC = {
},
},
'Mac GN': {
+ # TODO(dpranke): Remove after builders have restarted.
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_PLATFORM': 'mac',
+ },
+ 'test_generators': [
+ steps.generate_gtest,
+ steps.generate_script,
+ steps.generate_isolated_script,
+ ],
+ 'enable_swarming': True,
+ 'testing': {
+ 'platform': 'mac',
+ },
+ },
+ 'Mac GYP': {
'chromium_config': 'chromium',
'chromium_apply_config': ['mb', 'force_mac_toolchain'],
'gclient_config': 'chromium',
@@ -165,6 +184,25 @@ SPEC = {
},
},
'Mac GN (dbg)': {
+ # TODO(dpranke): Remove after builders have restarted.
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'mac',
+ },
+ 'test_generators': [
+ steps.generate_gtest,
+ steps.generate_script,
+ steps.generate_isolated_script,
+ ],
+ 'enable_swarming': True,
+ 'testing': {
+ 'platform': 'mac',
+ },
+ },
+ 'Mac GYP (dbg)': {
'chromium_config': 'chromium',
'chromium_apply_config': ['mb', 'force_mac_toolchain'],
'gclient_config': 'chromium',

Powered by Google App Engine
This is Rietveld 408576698