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

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: Rebase 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 | « net/test/run_all_unittests.cc ('k') | url/BUILD.gn » ('j') | 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 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 'mixins': ['clang'], 1598 'mixins': ['clang'],
1599 }, 1599 },
1600 1600
1601 'clang': { 1601 'clang': {
1602 'gn_args': 'is_clang=true', 1602 'gn_args': 'is_clang=true',
1603 'gyp_defines': 'clang=1', 1603 'gyp_defines': 'clang=1',
1604 }, 1604 },
1605 1605
1606 'cronet': { 1606 'cronet': {
1607 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1607 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1608 'enable_websockets=false'), 1608 'enable_websockets=false use_platform_icu_alternatives=true '
1609 'disable_brotli_filter=true'),
1609 'gyp_defines': ('disable_file_support=1 disable_ftp_support=1 ' 1610 'gyp_defines': ('disable_file_support=1 disable_ftp_support=1 '
1610 'enable_websockets=0'), 1611 'enable_websockets=0 use_platform_icu_alternatives=1 '
1612 'disable_brotli_filter=1'),
1611 }, 1613 },
1612 1614
1613 'crosscompile': { 1615 'crosscompile': {
1614 # This mixin is only needed on GYP bots that are doing cross-compiles 1616 # This mixin is only needed on GYP bots that are doing cross-compiles
1615 # but are *not* targetting Android or iOS (where build/gyp_chromium 1617 # but are *not* targetting Android or iOS (where build/gyp_chromium
1616 # will set the crosscompile variable automatically). It is not need 1618 # will set the crosscompile variable automatically). It is not need
1617 # in GN at all. 1619 # in GN at all.
1618 'gyp_crosscompile': True, 1620 'gyp_crosscompile': True,
1619 }, 1621 },
1620 1622
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1841 'gn_args': 'is_component_build=true enable_iterator_debugging=false', 1843 'gn_args': 'is_component_build=true enable_iterator_debugging=false',
1842 'gyp_defines': 'component=shared_library build_for_tool=drmemory', 1844 'gyp_defines': 'component=shared_library build_for_tool=drmemory',
1843 }, 1845 },
1844 1846
1845 'valgrind': { 1847 'valgrind': {
1846 # TODO: add gn_args for 'build_for_tool=memcheck' 1848 # TODO: add gn_args for 'build_for_tool=memcheck'
1847 'gyp_defines': 'build_for_tool=memcheck', 1849 'gyp_defines': 'build_for_tool=memcheck',
1848 } 1850 }
1849 }, 1851 },
1850 } 1852 }
OLDNEW
« no previous file with comments | « net/test/run_all_unittests.cc ('k') | url/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698