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

Unified Diff: tools/mb/mb_config.pyl

Issue 1633413002: Add Dr. Fuzz config into tools/mb/mb_config.pyl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb_config.pyl
diff --git a/tools/mb/mb_config.pyl b/tools/mb/mb_config.pyl
index 9466b89cceb9cb8fe687c1506a4ad895b5404121..dfc3af4fe0a356e9ae3a056a9ef8168b292c3bff 100644
--- a/tools/mb/mb_config.pyl
+++ b/tools/mb/mb_config.pyl
@@ -70,6 +70,8 @@
'libfuzzer_upload_bot': ['gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs'],
'libfuzzer_upload_bot_asan': ['gn', 'release', 'libfuzzer', 'asan', 'proprietary_codecs'],
'libfuzzer_upload_bot_msan': ['gn', 'release', 'libfuzzer', 'msan', 'proprietary_codecs'],
+ 'drfuzz_upload_bot_win32': ['gn', 'release', 'drmemory', 'drfuzz', 'x86', 'proprietary_codecs'],
+ 'drfuzz_upload_bot_win64': ['gn', 'release', 'drmemory', 'drfuzz', 'x64', 'proprietary_codecs'],
# This is just for completeness; any bot that uses this config
# should never actually run MB.
@@ -405,6 +407,13 @@
'gn_args': 'target_cpu="x86"',
'gyp_defines': 'target_arch=ia32',
},
+
+ 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
Dirk Pranke 2016/01/28 00:30:49 is there a matching GYP equivalent for this?
zhaoqin 2016/01/28 04:05:02 no, that was added for building fuzzers on Windows
+
+ 'drmemory': {
+ 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
zhaoqin 2016/01/27 04:24:15 actually, I am not sure if enable_iterator_debuggi
Dirk Pranke 2016/01/28 00:30:48 Honestly, I have no idea what this will do. I'm ha
zhaoqin 2016/01/28 04:05:02 Acknowledged.
+ 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
+ }
},
# This is a map of buildbot master names -> buildbot builder names ->
@@ -544,6 +553,8 @@
'CFI Linux': 'gn_cfi_release_bot',
'CFI Linux ToT': 'gn_cfi_release_bot',
'CrWinClang64(dbg)': 'win_clang_debug_bot',
+ 'Win LKGR (DrM)': 'drfuzz_upload_bot_win32',
+ 'Win LKGR (DrM 64)': 'drfuzz_upload_bot_win64',
'Libfuzzer Upload Linux': 'libfuzzer_upload_bot',
'Libfuzzer Upload Linux ASan': 'libfuzzer_upload_bot_asan',
'Libfuzzer Upload Linux MSan': 'libfuzzer_upload_bot_msan',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698