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

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

Issue 1839803002: Remove net & url small, iOS ICU alternatives, unit tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code cleaning 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
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 1668 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 'mixins': ['clang'], 1679 'mixins': ['clang'],
1680 }, 1680 },
1681 1681
1682 'clang': { 1682 'clang': {
1683 'gn_args': 'is_clang=true', 1683 'gn_args': 'is_clang=true',
1684 'gyp_defines': 'clang=1', 1684 'gyp_defines': 'clang=1',
1685 }, 1685 },
1686 1686
1687 'cronet': { 1687 'cronet': {
1688 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1688 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1689 'enable_websockets=false'), 1689 'enable_websockets=false use_platform_icu_alternatives=true '
1690 'disable_brotli_filter=true'),
1690 'gyp_defines': ('disable_file_support=1 disable_ftp_support=1 ' 1691 'gyp_defines': ('disable_file_support=1 disable_ftp_support=1 '
1691 'enable_websockets=0'), 1692 'enable_websockets=0 use_platform_icu_alternatives=1 '
1693 'disable_brotli_filter=1'),
1692 }, 1694 },
1693 1695
1694 'crosscompile': { 1696 'crosscompile': {
1695 # This mixin is only needed on GYP bots that are doing cross-compiles 1697 # This mixin is only needed on GYP bots that are doing cross-compiles
1696 # but are *not* targetting Android or iOS (where build/gyp_chromium 1698 # but are *not* targetting Android or iOS (where build/gyp_chromium
1697 # will set the crosscompile variable automatically). It is not need 1699 # will set the crosscompile variable automatically). It is not need
1698 # in GN at all. 1700 # in GN at all.
1699 'gyp_crosscompile': True, 1701 'gyp_crosscompile': True,
1700 }, 1702 },
1701 1703
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1924 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1926 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1925 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1927 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1926 }, 1928 },
1927 1929
1928 'valgrind': { 1930 'valgrind': {
1929 # TODO: add gn_args for 'build_for_tool=memcheck' 1931 # TODO: add gn_args for 'build_for_tool=memcheck'
1930 'gyp_defines': 'build_for_tool=memcheck', 1932 'gyp_defines': 'build_for_tool=memcheck',
1931 } 1933 }
1932 }, 1934 },
1933 } 1935 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698