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

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

Issue 1809273002: Enable whole-program virtual function optimization in LTO mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename one more instance of is_lto 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
« build/toolchain/win/BUILD.gn ('K') | « build/toolchain/win/BUILD.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 the list of configs that you can pass to mb; each config 6 # This is the list of configs that you can pass to mb; each config
7 # represents a particular combination of GYP_DEFINES/gn args that 7 # represents a particular combination of GYP_DEFINES/gn args that
8 # we must support. A given config *may* be platform-specific but 8 # we must support. A given config *may* be platform-specific but
9 # is not necessarily so (i.e., we might have mac, win, and linux 9 # is not necessarily so (i.e., we might have mac, win, and linux
10 # bots all using the 'gn_release_bot' config). 10 # bots all using the 'gn_release_bot' config).
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 }, 333 },
334 334
335 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' }, 335 'libfuzzer': { 'gn_args': 'use_libfuzzer=true' },
336 336
337 'lsan': { 337 'lsan': {
338 'gn_args': 'is_lsan=true', 338 'gn_args': 'is_lsan=true',
339 'gyp_defines': 'lsan=1', 339 'gyp_defines': 'lsan=1',
340 }, 340 },
341 341
342 'lto': { 342 'lto': {
343 'gn_args': 'is_lto=true', 343 'gn_args': 'allow_posix_link_time_opt=true',
344 'gyp_defines': 'use_lto=1', 344 'gyp_defines': 'use_lto=1',
345 }, 345 },
346 346
347 'mac_strip': { 347 'mac_strip': {
348 'gn_args': 'error', # TODO(GYP): Port mac_strip_release 348 'gn_args': 'error', # TODO(GYP): Port mac_strip_release
349 'gyp_defines': 'mac_strip_release=1', 349 'gyp_defines': 'mac_strip_release=1',
350 }, 350 },
351 351
352 'minimal_symbols': { 352 'minimal_symbols': {
353 'gn_args': 'symbol_level=1', 353 'gn_args': 'symbol_level=1',
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 'win_chromium_clang_upload': 'gn_release_bot', 819 'win_chromium_clang_upload': 'gn_release_bot',
820 'win_clang_x64_dbg': 'win_clang_debug_bot', 820 'win_clang_x64_dbg': 'win_clang_debug_bot',
821 }, 821 },
822 'tryserver.v8': { 822 'tryserver.v8': {
823 'v8_linux_chromium_gn_rel': 'gn_release_trybot', 823 'v8_linux_chromium_gn_rel': 'gn_release_trybot',
824 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', 824 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot',
825 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', 825 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64',
826 }, 826 },
827 }, 827 },
828 } 828 }
OLDNEW
« build/toolchain/win/BUILD.gn ('K') | « build/toolchain/win/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698