| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |