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

Side by Side Diff: tools/mb/mb_config.pyl

Issue 1878273003: Update blimp build bot args match build/args/blimp_engine.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « build/args/blimp_engine.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 'masters': { 9 'masters': {
10 # Take care when changing any of these builders to ensure that you do not 10 # Take care when changing any of these builders to ensure that you do not
(...skipping 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 }, 1560 },
1561 1561
1562 'asan': { 1562 'asan': {
1563 'gn_args': 'is_asan=true', 1563 'gn_args': 'is_asan=true',
1564 'gyp_defines': 'asan=1', 1564 'gyp_defines': 'asan=1',
1565 }, 1565 },
1566 1566
1567 # Removes dependencies on X11 and audio libraries for a containerized 1567 # Removes dependencies on X11 and audio libraries for a containerized
1568 # build. 1568 # build.
1569 'blimp': { 1569 'blimp': {
1570 'gn_args': ('use_aura=true use_ozone=true use_alsa=false ' 1570 # This list must be kept in sync with the list in
1571 'use_pulseaudio=false use_cups=false use_glib=false ' 1571 # //build/args/blimp_engine.gn.
1572 'use_low_quality_image_interpolation=true'), 1572 'gn_args': ('use_aura=true use_ozone=true ozone_auto_platforms=false '
1573 'gyp_defines': ('use_aura=1 use_ozone=1 use_alsa=0 ' 1573 'ozone_platform="headless" metrics_use_blimp=true '
1574 'use_pulseaudio=0 use_cups=0 use_glib=0'), 1574 'use_low_quality_image_interpolation=true use_alsa=false '
1575 'use_pulseaudio=false use_cups=false use_glib=false'),
Dirk Pranke 2016/04/12 18:01:13 It's probably a bit safer to add: 'gyp_defines'
maniscalco 2016/04/12 18:08:32 Good call. Done.
1575 }, 1576 },
1576 1577
1577 'cast': { 1578 'cast': {
1578 'gn_args': 'is_chromecast=true', 1579 'gn_args': 'is_chromecast=true',
1579 'gyp_defines': 'chromecast=1', 1580 'gyp_defines': 'chromecast=1',
1580 }, 1581 },
1581 1582
1582 'cfi': { 1583 'cfi': {
1583 'gn_args': 'is_cfi=true', 1584 'gn_args': 'is_cfi=true',
1584 'gyp_defines': 'cfi_vptr=1', 1585 'gyp_defines': 'cfi_vptr=1',
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1855 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1856 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1856 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1857 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1857 }, 1858 },
1858 1859
1859 'valgrind': { 1860 'valgrind': {
1860 # TODO: add gn_args for 'build_for_tool=memcheck' 1861 # TODO: add gn_args for 'build_for_tool=memcheck'
1861 'gyp_defines': 'build_for_tool=memcheck', 1862 'gyp_defines': 'build_for_tool=memcheck',
1862 } 1863 }
1863 }, 1864 },
1864 } 1865 }
OLDNEW
« no previous file with comments | « build/args/blimp_engine.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698