Chromium Code Reviews| 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', |