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

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 2055623002: lkgr master: Port linux msan, tsan and windows asan bots to recipes (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: . 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/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index 56b26fd1374d314a7291b23c4fdc2bd6ca3ac009..090369fb812c2bcdbc4ebfb4728a8aafd97c5a81 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -429,6 +429,11 @@ def msan(c):
c.gyp_env.GYP_DEFINES['msan'] = 1
@config_ctx()
+def msan_no_origin_tracking(c):
+ # Don't track the chain of stores leading from allocation site to use site.
+ c.gyp_env.GYP_DEFINES['msan_track_origins'] = 0
+
+@config_ctx()
def msan_full_origin_tracking(c):
# Track the chain of stores leading from allocation site to use site.
c.gyp_env.GYP_DEFINES['msan_track_origins'] = 2
@@ -529,9 +534,6 @@ def clang_tot(c):
@config_ctx(includes=['ninja', 'clang', 'asan', 'static_library'])
def win_asan(c):
- # These are set on the lkgr bot, and the fyi bots should match the lkgr bot.
- # TODO(thakis): Once the lkgr bot uses recipes, the lkgr and the fyi bots
- # should use the same context to ensure they use the same gyp defines.
c.gyp_env.GYP_DEFINES['enable_ipc_fuzzer'] = 1
c.gyp_env.GYP_DEFINES['v8_enable_verify_heap'] = 1
@@ -561,6 +563,10 @@ def chromium_win_clang_official(c):
def chromium_win_clang_official_tot(c):
pass
+@config_ctx(includes=['win_asan', 'goma'])
+def chromium_win_clang_asan(c):
+ pass
+
@config_ctx(includes=['win_asan', 'clang_tot']) # No goma.
def chromium_win_clang_asan_tot(c):
pass
« no previous file with comments | « masters/master.chromium.lkgr/master_lkgr_cfg.py ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698