| 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 recipe_engine.config import config_item_context, ConfigGroup | 7 from recipe_engine.config import config_item_context, ConfigGroup |
| 8 from recipe_engine.config import Dict, List, Single, Static, Set, BadConf | 8 from recipe_engine.config import Dict, List, Single, Static, Set, BadConf |
| 9 from recipe_engine.config_types import Path | 9 from recipe_engine.config_types import Path |
| 10 | 10 |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 c.compile_py.clobber = False | 804 c.compile_py.clobber = False |
| 805 | 805 |
| 806 @config_ctx() | 806 @config_ctx() |
| 807 def chromium_perf_fyi(c): | 807 def chromium_perf_fyi(c): |
| 808 c.compile_py.clobber = False | 808 c.compile_py.clobber = False |
| 809 if c.HOST_PLATFORM == 'win': | 809 if c.HOST_PLATFORM == 'win': |
| 810 c.compile_py.compiler = None | 810 c.compile_py.compiler = None |
| 811 c.compile_py.goma_dir = None | 811 c.compile_py.goma_dir = None |
| 812 c.gyp_env.GYP_DEFINES['use_goma'] = 0 | 812 c.gyp_env.GYP_DEFINES['use_goma'] = 0 |
| 813 | 813 |
| 814 @config_ctx() | |
| 815 def chromium_deterministic_build(c): | |
| 816 c.gyp_env.GYP_DEFINES['dont_embed_build_metadata'] = 1 | |
| 817 | |
| 818 @config_ctx(includes=['chromium_clang']) | 814 @config_ctx(includes=['chromium_clang']) |
| 819 def cast_linux(c): | 815 def cast_linux(c): |
| 820 c.gyp_env.GYP_DEFINES['chromecast'] = 1 | 816 c.gyp_env.GYP_DEFINES['chromecast'] = 1 |
| 821 | 817 |
| 822 @config_ctx() | 818 @config_ctx() |
| 823 def internal_gles2_conform_tests(c): | 819 def internal_gles2_conform_tests(c): |
| 824 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1 | 820 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1 |
| OLD | NEW |