Index: scripts/slave/recipe_modules/chromium/chromium_fyi.py |
diff --git a/scripts/slave/recipe_modules/chromium/chromium_fyi.py b/scripts/slave/recipe_modules/chromium/chromium_fyi.py |
index 89aa6489d177512e1b521e88a994c610389ad6b0..6aa41bdff75352594c5232eac235784819bf0cf3 100644 |
--- a/scripts/slave/recipe_modules/chromium/chromium_fyi.py |
+++ b/scripts/slave/recipe_modules/chromium/chromium_fyi.py |
@@ -244,5 +244,42 @@ SPEC = { |
'platform': 'mac', |
}, |
}, |
+ 'Site Isolation Linux': { |
+ 'recipe_config': 'chromium', |
+ 'chromium_config_kwargs': { |
+ 'BUILD_CONFIG': 'Release', |
+ 'TARGET_BITS': 64, |
+ }, |
+ 'bot_type': 'builder_tester', |
+ 'compile_targets': [ |
+ 'content_unittests', |
+ 'content_browsertests', |
+ ], |
+ 'test_generators': [ |
+ steps.generate_gtest, |
+ ], |
+ 'testing': { |
+ 'platform': 'linux', |
+ }, |
+ }, |
+ 'Site Isolation Win': { |
+ 'recipe_config': 'chromium', |
+ 'chromium_config_kwargs': { |
+ 'BUILD_CONFIG': 'Release', |
+ 'TARGET_PLATFORM': 'win', |
+ 'TARGET_BITS': 64, |
+ }, |
+ 'bot_type': 'builder_tester', |
+ 'compile_targets': [ |
+ 'content_unittests', |
+ 'content_browsertests', |
+ ], |
+ 'test_generators': [ |
+ steps.generate_gtest, |
+ ], |
+ 'testing': { |
+ 'platform': 'win', |
+ }, |
+ }, |
}, |
} |