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

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

Issue 1371913005: chromium_tests: add explicit compile targets to bots that need them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 3 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_chrome.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py b/scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py
index b206ea925cbcfb4d05189f7bd789fe8bd8410581..127ed7dd82675b6f2216b963b8353064c1f6d478 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py
@@ -31,6 +31,9 @@ SPEC = {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
},
+ 'compile_targets': [
+ 'linux_packages_all'
+ ],
'testing': {
'platform': 'linux',
},
@@ -43,6 +46,9 @@ SPEC = {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
+ 'compile_targets': [
+ 'linux_packages_all'
+ ],
'testing': {
'platform': 'linux',
},
@@ -55,6 +61,9 @@ SPEC = {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
+ 'compile_targets': [
+ 'chrome',
+ ],
'testing': {
'platform': 'mac',
},

Powered by Google App Engine
This is Rietveld 408576698