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

Unified Diff: infra/mb/mb_config.pyl

Issue 2138693002: [tools] Build generator script (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review + better docu Created 4 years, 5 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 | tools/dev/v8gen.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/mb/mb_config.pyl
diff --git a/infra/mb/mb_config.pyl b/infra/mb/mb_config.pyl
index 91fe84085cf96a44cafb011a99ccc7a721fdd887..ed6694924f7291c10a142cd92c72b99ad22484fc 100644
--- a/infra/mb/mb_config.pyl
+++ b/infra/mb/mb_config.pyl
@@ -8,6 +8,15 @@
# below). MB uses this dict to look up which config to use for a given bot.
# Bots are ordered by appearance on waterfall.
'masters': {
+ 'developer_default': {
+ 'x64.debug': 'default_debug_x64',
+ 'x64.optdebug': 'default_optdebug_x64',
+ 'x64.release': 'default_release_x64',
+ 'x86.debug': 'default_debug_x86',
+ 'x86.optdebug': 'default_optdebug_x86',
+ 'x86.release': 'default_release_x86',
+ },
+
'client.dart.fyi': {
'v8-linux-release': 'gyp_release_x86_disassembler',
'v8-win-release': 'gyp_release_x86_disassembler',
@@ -179,6 +188,21 @@
# To ease readability, config values are ordered by:
# gyp/gn, release/debug, arch type, other values alphabetically.
'configs': {
+ # Developer default configs.
+ 'default_debug_x64': [
+ 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks', 'v8_full_debug'],
+ 'default_optdebug_x64': [
+ 'gn', 'debug', 'x64', 'v8_enable_slow_dchecks'],
+ 'default_release_x64': [
+ 'gn', 'release', 'x64'],
+ 'default_debug_x86': [
+ 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks', 'v8_full_debug'],
+ 'default_optdebug_x86': [
+ 'gn', 'debug', 'x86', 'v8_enable_slow_dchecks'],
+ 'default_release_x86': [
+ 'gn', 'release', 'x86'],
+
+
# GN release configs for x64.
'gn_release_x64': [
'gn', 'release_bot', 'x64', 'swarming'],
« no previous file with comments | « no previous file | tools/dev/v8gen.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698