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

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

Issue 2870543003: win: Set is_clang=true by default. (Closed)
Patch Set: rebase Created 3 years, 7 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/config/BUILDCONFIG.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 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 1493
1494 'v8_future_debug_bot': [ 1494 'v8_future_debug_bot': [
1495 'v8_future', 'debug_bot', 1495 'v8_future', 'debug_bot',
1496 ], 1496 ],
1497 1497
1498 'v8_future_release_bot': [ 1498 'v8_future_release_bot': [
1499 'v8_future', 'release_bot', 1499 'v8_future', 'release_bot',
1500 ], 1500 ],
1501 1501
1502 'win_clang_debug_bot': [ 1502 'win_clang_debug_bot': [
1503 'clang', 'debug_bot', 'minimal_symbols', 1503 # TODO(thakis): Now that the default win bots uss clang, use win_clang
hans 2017/05/15 17:22:43 s/uss/use/
1504 # to make sure things stay compilable with msvc. Having "win_clang"
1505 # check that is very confusing, so rename the bot to win_msvc.
1506 'no_clang', 'debug_bot', 'minimal_symbols',
1504 ], 1507 ],
1505 1508
1506 'windows_analyze': [ 1509 'windows_analyze': [
1507 'no_symbols', 'no_pch', 'shared', 'x86', 'win_analyze', 1510 'no_symbols', 'no_pch', 'shared', 'x86', 'win_analyze',
1508 ], 1511 ],
1509 }, 1512 },
1510 1513
1511 # This is a dict mapping a given 'mixin' name to a dict of settings that 1514 # This is a dict mapping a given 'mixin' name to a dict of settings that
1512 # mb should use. See //tools/mb/docs/user_guide.md for more information. 1515 # mb should use. See //tools/mb/docs/user_guide.md for more information.
1513 'mixins': { 1516 'mixins': {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1583 'cfi_full': { 1586 'cfi_full': {
1584 'gn_args': 'use_cfi_cast=true', 1587 'gn_args': 'use_cfi_cast=true',
1585 'mixins': ['cfi'], 1588 'mixins': ['cfi'],
1586 }, 1589 },
1587 1590
1588 'cfi_diag': { 1591 'cfi_diag': {
1589 'gn_args': 'use_cfi_diag=true', 1592 'gn_args': 'use_cfi_diag=true',
1590 }, 1593 },
1591 1594
1592 'chrome_pgo_phase_1': { 1595 'chrome_pgo_phase_1': {
1593 'gn_args': 'chrome_pgo_phase=1', 1596 'gn_args': 'chrome_pgo_phase=1 is_clang=false',
1594 }, 1597 },
1595 1598
1596 'chrome_pgo_phase_2': { 1599 'chrome_pgo_phase_2': {
1597 'gn_args': 'chrome_pgo_phase=2', 1600 'gn_args': 'chrome_pgo_phase=2 is_clang=false',
1598 }, 1601 },
1599 1602
1600 'chrome_with_codecs': { 1603 'chrome_with_codecs': {
1601 'mixins': ['ffmpeg_branding_chrome', 'proprietary_codecs'], 1604 'mixins': ['ffmpeg_branding_chrome', 'proprietary_codecs'],
1602 }, 1605 },
1603 1606
1604 'chromeos': { 1607 'chromeos': {
1605 'gn_args': 'target_os="chromeos"', 1608 'gn_args': 'target_os="chromeos"',
1606 }, 1609 },
1607 1610
1608 'chromeos_codecs': { 1611 'chromeos_codecs': {
1609 'mixins': ['ffmpeg_branding_chromeos', 'proprietary_codecs'], 1612 'mixins': ['ffmpeg_branding_chromeos', 'proprietary_codecs'],
1610 }, 1613 },
1611 1614
1612 'chromeos_with_codecs': { 1615 'chromeos_with_codecs': {
1613 'mixins': ['chromeos', 'chromeos_codecs'], 1616 'mixins': ['chromeos', 'chromeos_codecs'],
1614 }, 1617 },
1615 1618
1616 'clang_tot': { 1619 'clang_tot': {
1617 'gn_args': 'llvm_force_head_revision=true clang_use_chrome_plugins=false', 1620 'gn_args': 'llvm_force_head_revision=true clang_use_chrome_plugins=false',
1618 'mixins': ['clang'], 1621 'mixins': ['clang'],
1619 }, 1622 },
1620 1623
1621 'clang': { 1624 'clang': {
1622 'gn_args': 'is_clang=true', 1625 'gn_args': 'is_clang=true',
1623 }, 1626 },
1624 1627
1628 'no_clang': {
1629 'gn_args': 'is_clang=true',
Nico 2017/05/17 22:27:48 whooooooooops
hans 2017/05/17 22:36:45 But it said no_clang on the tin!
1630 },
1631
1625 'cronet': { 1632 'cronet': {
1626 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1633 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1627 'enable_websockets=false use_platform_icu_alternatives=true ' 1634 'enable_websockets=false use_platform_icu_alternatives=true '
1628 'use_partition_alloc=false'), 1635 'use_partition_alloc=false'),
1629 }, 1636 },
1630 1637
1631 'cros_chrome_sdk': { 1638 'cros_chrome_sdk': {
1632 # This is used so that the cros chrome_sdk (simplechrome) builders 1639 # This is used so that the cros chrome_sdk (simplechrome) builders
1633 # can manage the list of GN args in their .ebuild 1640 # can manage the list of GN args in their .ebuild
1634 # files and just pass through the desired arguments, hence not 1641 # files and just pass through the desired arguments, hence not
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1862 1869
1863 'static': { 1870 'static': {
1864 'gn_args': 'is_component_build=false', 1871 'gn_args': 'is_component_build=false',
1865 }, 1872 },
1866 1873
1867 'system_gbm_libdrm': { 1874 'system_gbm_libdrm': {
1868 'gn_args': 'use_system_libdrm=true use_system_minigbm=true', 1875 'gn_args': 'use_system_libdrm=true use_system_minigbm=true',
1869 }, 1876 },
1870 1877
1871 'syzyasan': { 1878 'syzyasan': {
1872 'gn_args': 'is_syzyasan=true', 1879 # TODO(thakis): Figure out SyzyASan + clang story.
1880 'gn_args': 'is_syzyasan=true is_clang=false',
1873 }, 1881 },
1874 1882
1875 'thin_lto': { 1883 'thin_lto': {
1876 'gn_args': 'use_thin_lto=true', 1884 'gn_args': 'use_thin_lto=true',
1877 'mixins': ['lto'], 1885 'mixins': ['lto'],
1878 }, 1886 },
1879 1887
1880 'tsan': { 1888 'tsan': {
1881 'gn_args': 'is_tsan=true', 1889 'gn_args': 'is_tsan=true',
1882 }, 1890 },
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1919 1927
1920 'x64': { 1928 'x64': {
1921 'gn_args': 'target_cpu="x64"', 1929 'gn_args': 'target_cpu="x64"',
1922 }, 1930 },
1923 1931
1924 'x86': { 1932 'x86': {
1925 'gn_args': 'target_cpu="x86"', 1933 'gn_args': 'target_cpu="x86"',
1926 }, 1934 },
1927 }, 1935 },
1928 } 1936 }
OLDNEW
« no previous file with comments | « build/config/BUILDCONFIG.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698