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

Unified Diff: masters/master.chromium.lkgr/master_lkgr_cfg.py

Issue 2055503003: lkgr: Convert mac 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.lkgr/master_lkgr_cfg.py
diff --git a/masters/master.chromium.lkgr/master_lkgr_cfg.py b/masters/master.chromium.lkgr/master_lkgr_cfg.py
index 46389544cf7c14fd6fcc615b483acfecf9dab8ce..ffa1a9848ccce141b7d8d21036afd57e47f0f215 100644
--- a/masters/master.chromium.lkgr/master_lkgr_cfg.py
+++ b/masters/master.chromium.lkgr/master_lkgr_cfg.py
@@ -62,45 +62,13 @@ F('win_syzyasan_lkgr', m_annotator.BaseFactory(recipe='chromium', timeout=7200))
asan_mac_gyp = 'asan=1 v8_enable_verify_heap=1 enable_ipc_fuzzer=1 '
B('Mac ASAN Release', 'mac_asan_rel', 'compile', 'chromium_lkgr')
-F('mac_asan_rel', linux().ChromiumASANFactory(
- clobber=True,
- options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
- factory_properties={
- 'cf_archive_build': ActiveMaster.is_production_host,
- 'cf_archive_name': 'asan',
- 'gs_bucket': 'gs://chromium-browser-asan',
- 'gs_acl': 'public-read',
- 'gclient_env': {'GYP_DEFINES': asan_mac_gyp},
- 'use_mb': True,
- }))
+F('mac_asan_rel', m_annotator.BaseFactory(recipe='chromium'))
-media_gyp = (' proprietary_codecs=1 ffmpeg_branding=Chrome')
B('Mac ASAN Release Media', 'mac_asan_rel_media', 'compile', 'chromium_lkgr')
-F('mac_asan_rel_media', linux().ChromiumASANFactory(
- clobber=True,
- options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
- factory_properties={
- 'cf_archive_build': ActiveMaster.is_production_host,
- 'cf_archive_name': 'asan',
- 'gs_bucket': 'gs://chrome-test-builds/media',
- 'gclient_env': {'GYP_DEFINES': asan_mac_gyp + media_gyp},
- 'use_mb': True,
- }))
+F('mac_asan_rel_media', m_annotator.BaseFactory(recipe='chromium'))
B('Mac ASAN Debug', 'mac_asan_dbg', 'compile', 'chromium_lkgr')
-F('mac_asan_dbg', linux().ChromiumASANFactory(
- clobber=True,
- target='Debug',
- options=['--compiler=goma-clang', '--', '-target', 'chromium_builder_asan'],
- factory_properties={
- 'cf_archive_build': ActiveMaster.is_production_host,
- 'cf_archive_name': 'asan',
- 'gs_bucket': 'gs://chromium-browser-asan',
- 'gs_acl': 'public-read',
- 'gclient_env': {'GYP_DEFINES': asan_mac_gyp +
- ' component=static_library '},
- 'use_mb': True,
- }))
+F('mac_asan_dbg', m_annotator.BaseFactory(recipe='chromium'))
################################################################################
## Linux
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698