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

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

Issue 2091453002: Enable stripping on "Mac" builder on /p/chromium waterfall (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@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 unified diff | Download patch
« no previous file with comments | « no previous file | 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 2103 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 'gn_args': 'is_lsan=true', 2114 'gn_args': 'is_lsan=true',
2115 'gyp_defines': 'lsan=1', 2115 'gyp_defines': 'lsan=1',
2116 }, 2116 },
2117 2117
2118 'lto': { 2118 'lto': {
2119 'gn_args': 'allow_posix_link_time_opt=true', 2119 'gn_args': 'allow_posix_link_time_opt=true',
2120 'gyp_defines': 'use_lto=1', 2120 'gyp_defines': 'use_lto=1',
2121 }, 2121 },
2122 2122
2123 'mac_strip': { 2123 'mac_strip': {
2124 'gn_args': 'error', # TODO(GYP): Port mac_strip_release 2124 'gn_args': 'enable_stripping=true',
2125 'gyp_defines': 'mac_strip_release=1', 2125 'gyp_defines': 'mac_strip_release=1',
2126 }, 2126 },
2127 2127
2128 'mac_views_browser': { 2128 'mac_views_browser': {
2129 'gn_args': 'mac_views_browser=true', 2129 'gn_args': 'mac_views_browser=true',
2130 'gyp_defines': 'mac_views_browser=1', 2130 'gyp_defines': 'mac_views_browser=1',
2131 }, 2131 },
2132 2132
2133 'minimal_symbols': { 2133 'minimal_symbols': {
2134 'gn_args': 'symbol_level=1', 2134 'gn_args': 'symbol_level=1',
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 }, 2299 },
2300 2300
2301 'drfuzz': { 'gn_args': 'use_drfuzz=true' }, 2301 'drfuzz': { 'gn_args': 'use_drfuzz=true' },
2302 2302
2303 'drmemory': { 2303 'drmemory': {
2304 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 2304 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
2305 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 2305 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
2306 }, 2306 },
2307 }, 2307 },
2308 } 2308 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698