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

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

Issue 1881343002: Revert of 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 # This list must be kept in sync with the list in 1570 'gn_args': ('use_aura=true use_ozone=true use_alsa=false '
1571 # //build/args/blimp_engine.gn. 1571 'use_pulseaudio=false use_cups=false use_glib=false '
1572 'gn_args': ('use_aura=true use_ozone=true ozone_auto_platforms=false ' 1572 'use_low_quality_image_interpolation=true'),
1573 'ozone_platform="headless" ozone_platform_headless=true ' 1573 'gyp_defines': ('use_aura=1 use_ozone=1 use_alsa=0 '
1574 'metrics_use_blimp=true ' 1574 'use_pulseaudio=0 use_cups=0 use_glib=0'),
1575 'use_low_quality_image_interpolation=true use_alsa=false '
1576 'use_pulseaudio=false use_cups=false use_glib=false'),
1577 'gyp_defines': 'target_arch=unknown',
1578 }, 1575 },
1579 1576
1580 'cast': { 1577 'cast': {
1581 'gn_args': 'is_chromecast=true', 1578 'gn_args': 'is_chromecast=true',
1582 'gyp_defines': 'chromecast=1', 1579 'gyp_defines': 'chromecast=1',
1583 }, 1580 },
1584 1581
1585 'cfi': { 1582 'cfi': {
1586 'gn_args': 'is_cfi=true', 1583 'gn_args': 'is_cfi=true',
1587 'gyp_defines': 'cfi_vptr=1', 1584 'gyp_defines': 'cfi_vptr=1',
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1855 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1859 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1856 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1860 }, 1857 },
1861 1858
1862 'valgrind': { 1859 'valgrind': {
1863 # TODO: add gn_args for 'build_for_tool=memcheck' 1860 # TODO: add gn_args for 'build_for_tool=memcheck'
1864 'gyp_defines': 'build_for_tool=memcheck', 1861 'gyp_defines': 'build_for_tool=memcheck',
1865 } 1862 }
1866 }, 1863 },
1867 } 1864 }
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