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

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

Issue 2920573002: Force off clang for GPU FYI release bots. (Closed)
Patch Set: Created 3 years, 6 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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 1227
1228 'gpu_tests_deqp_gles_debug_trybot': [ 1228 'gpu_tests_deqp_gles_debug_trybot': [
1229 'gpu_fyi_tests', 'debug_trybot', 1229 'gpu_fyi_tests', 'debug_trybot',
1230 ], 1230 ],
1231 1231
1232 'gpu_tests_deqp_gles_debug_trybot_x86': [ 1232 'gpu_tests_deqp_gles_debug_trybot_x86': [
1233 'gpu_fyi_tests', 'debug_trybot', 'x86', 1233 'gpu_fyi_tests', 'debug_trybot', 'x86',
1234 ], 1234 ],
1235 1235
1236 'gpu_tests_deqp_gles_release_trybot': [ 1236 'gpu_tests_deqp_gles_release_trybot': [
1237 'gpu_fyi_tests', 'release_trybot', 1237 # TODO(thakis): Remove no_clang once https://crbug.com/727437 is fixed.
1238 'gpu_fyi_tests', 'release_trybot', 'no_clang',
1238 ], 1239 ],
1239 1240
1240 'gpu_tests_deqp_gles_release_trybot_x86': [ 1241 'gpu_tests_deqp_gles_release_trybot_x86': [
1241 'gpu_fyi_tests', 'release_trybot', 'x86', 1242 # TODO(thakis): Remove no_clang once https://crbug.com/727437 is fixed.
1243 'gpu_fyi_tests', 'release_trybot', 'x86', 'no_clang',
1242 ], 1244 ],
1243 1245
1244 'gpu_tests_debug_trybot': [ 1246 'gpu_tests_debug_trybot': [
1245 'gpu_tests', 'debug_trybot', 1247 'gpu_tests', 'debug_trybot',
1246 ], 1248 ],
1247 1249
1248 'gpu_tests_debug_trybot_x86': [ 1250 'gpu_tests_debug_trybot_x86': [
1249 'gpu_tests', 'debug_trybot', 'x86', 1251 'gpu_tests', 'debug_trybot', 'x86',
1250 ], 1252 ],
1251 1253
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 1590
1589 'clang_tot': { 1591 'clang_tot': {
1590 'gn_args': 'llvm_force_head_revision=true clang_use_chrome_plugins=false', 1592 'gn_args': 'llvm_force_head_revision=true clang_use_chrome_plugins=false',
1591 'mixins': ['clang'], 1593 'mixins': ['clang'],
1592 }, 1594 },
1593 1595
1594 'clang': { 1596 'clang': {
1595 'gn_args': 'is_clang=true', 1597 'gn_args': 'is_clang=true',
1596 }, 1598 },
1597 1599
1600 'no_clang': {
1601 'gn_args': 'is_clang=false',
1602 },
1603
1598 'cronet': { 1604 'cronet': {
1599 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1605 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1600 'enable_websockets=false use_platform_icu_alternatives=true ' 1606 'enable_websockets=false use_platform_icu_alternatives=true '
1601 'use_partition_alloc=false'), 1607 'use_partition_alloc=false'),
1602 }, 1608 },
1603 1609
1604 'cros_chrome_sdk': { 1610 'cros_chrome_sdk': {
1605 # This is used so that the cros chrome_sdk (simplechrome) builders 1611 # This is used so that the cros chrome_sdk (simplechrome) builders
1606 # can manage the list of GN args in their .ebuild 1612 # can manage the list of GN args in their .ebuild
1607 # files and just pass through the desired arguments, hence not 1613 # files and just pass through the desired arguments, hence not
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1889 1895
1890 'x64': { 1896 'x64': {
1891 'gn_args': 'target_cpu="x64"', 1897 'gn_args': 'target_cpu="x64"',
1892 }, 1898 },
1893 1899
1894 'x86': { 1900 'x86': {
1895 'gn_args': 'target_cpu="x86"', 1901 'gn_args': 'target_cpu="x86"',
1896 }, 1902 },
1897 }, 1903 },
1898 } 1904 }
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