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

Side by Side Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 949983002: Change timeout for perf.fyi Win x64 builder, temporarily disable Goma. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import pipes 5 import pipes
6 6
7 from slave.recipe_config import config_item_context, ConfigGroup 7 from slave.recipe_config import config_item_context, ConfigGroup
8 from slave.recipe_config import Dict, List, Single, Static, Set, BadConf 8 from slave.recipe_config import Dict, List, Single, Static, Set, BadConf
9 from slave.recipe_config_types import Path 9 from slave.recipe_config_types import Path
10 10
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 737
738 @config_ctx() 738 @config_ctx()
739 def v8_verify_heap(c): 739 def v8_verify_heap(c):
740 c.gyp_env.GYP_DEFINES['v8_enable_verify_heap'] = 1 740 c.gyp_env.GYP_DEFINES['v8_enable_verify_heap'] = 1
741 741
742 @config_ctx() 742 @config_ctx()
743 def chromium_perf(c): 743 def chromium_perf(c):
744 c.compile_py.clobber = False 744 c.compile_py.clobber = False
745 745
746 @config_ctx() 746 @config_ctx()
747 def chromium_perf_fyi(c):
748 c.compile_py.clobber = False
749 if c.HOST_PLATFORM == 'win':
750 c.compile_py.compiler = None
751 c.compile_py.goma_dir = None
752 c.gyp_env.GYP_DEFINES['use_goma'] = 0
753
754 @config_ctx()
747 def chromium_deterministic_build(c): 755 def chromium_deterministic_build(c):
748 c.gyp_env.GYP_DEFINES['dont_embed_build_metadata'] = 1 756 c.gyp_env.GYP_DEFINES['dont_embed_build_metadata'] = 1
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698