| 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
|
|
|