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

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

Issue 2749423004: Remove mb_config Ozone platform arguments. (Closed)
Patch Set: Created 3 years, 9 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 # 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 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1028 1028
1029 'chromeos_with_codecs_debug_bot': [ 1029 'chromeos_with_codecs_debug_bot': [
1030 'chromeos_with_codecs', 'debug_bot', 1030 'chromeos_with_codecs', 'debug_bot',
1031 ], 1031 ],
1032 1032
1033 'chromeos_with_codecs_debug_trybot': [ 1033 'chromeos_with_codecs_debug_trybot': [
1034 'chromeos_with_codecs', 'debug_trybot', 1034 'chromeos_with_codecs', 'debug_trybot',
1035 ], 1035 ],
1036 1036
1037 'chromeos_with_codecs_ozone_release_bot': [ 1037 'chromeos_with_codecs_ozone_release_bot': [
1038 'chromeos_with_codecs', 'ozone', 'default_ozone_platform_x11', 'release_bo t', 1038 'chromeos_with_codecs', 'ozone', 'release_bot',
1039 ], 1039 ],
1040 1040
1041 'chromeos_with_codecs_ozone_release_trybot': [ 1041 'chromeos_with_codecs_ozone_release_trybot': [
1042 'chromeos_with_codecs', 'ozone', 'default_ozone_platform_x11', 'release_tr ybot', 1042 'chromeos_with_codecs', 'ozone', 'release_trybot',
1043 ], 1043 ],
1044 1044
1045 'chromeos_with_codecs_release_bot': [ 1045 'chromeos_with_codecs_release_bot': [
1046 'chromeos_with_codecs', 'release_bot', 1046 'chromeos_with_codecs', 'release_bot',
1047 ], 1047 ],
1048 1048
1049 'chromeos_with_codecs_release_trybot': [ 1049 'chromeos_with_codecs_release_trybot': [
1050 'chromeos_with_codecs', 'release_trybot', 1050 'chromeos_with_codecs', 'release_trybot',
1051 ], 1051 ],
1052 1052
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1674 }, 1674 },
1675 1675
1676 'debug_static_bot': { 1676 'debug_static_bot': {
1677 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], 1677 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'],
1678 }, 1678 },
1679 1679
1680 'debug_trybot': { 1680 'debug_trybot': {
1681 'mixins': ['debug_bot', 'minimal_symbols'], 1681 'mixins': ['debug_bot', 'minimal_symbols'],
1682 }, 1682 },
1683 1683
1684 'default_ozone_platform_x11': {
1685 'gn_args': 'ozone_platform="x11"',
1686 },
1687
1688 'disable_nacl': { 1684 'disable_nacl': {
1689 'gn_args': 'enable_nacl=false', 1685 'gn_args': 'enable_nacl=false',
1690 }, 1686 },
1691 1687
1692 'edge': { 1688 'edge': {
1693 'gn_args': 'sanitizer_coverage_flags="edge"', 1689 'gn_args': 'sanitizer_coverage_flags="edge"',
1694 }, 1690 },
1695 1691
1696 # This mixin is used to force configs that use it to fail. It 1692 # This mixin is used to force configs that use it to fail. It
1697 # is used in two cases: when we have bots that we haven't looked 1693 # is used in two cases: when we have bots that we haven't looked
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1932 1928
1933 'x64': { 1929 'x64': {
1934 'gn_args': 'target_cpu="x64"', 1930 'gn_args': 'target_cpu="x64"',
1935 }, 1931 },
1936 1932
1937 'x86': { 1933 'x86': {
1938 'gn_args': 'target_cpu="x86"', 1934 'gn_args': 'target_cpu="x86"',
1939 }, 1935 },
1940 }, 1936 },
1941 } 1937 }
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