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

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

Issue 1212443005: reland #1: Set mac_min_sdk=10.10 on chromium.mac bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updated CL to prevent build configs from being used by testers. Created 5 years, 5 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 | scripts/slave/recipe_modules/chromium_tests/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 c.compile_py.compiler = None 780 c.compile_py.compiler = None
781 c.compile_py.goma_dir = None 781 c.compile_py.goma_dir = None
782 c.gyp_env.GYP_DEFINES['use_goma'] = 0 782 c.gyp_env.GYP_DEFINES['use_goma'] = 0
783 783
784 @config_ctx() 784 @config_ctx()
785 def chromium_deterministic_build(c): 785 def chromium_deterministic_build(c):
786 c.gyp_env.GYP_DEFINES['dont_embed_build_metadata'] = 1 786 c.gyp_env.GYP_DEFINES['dont_embed_build_metadata'] = 1
787 787
788 @config_ctx() 788 @config_ctx()
789 def chromium_mac_sdk_10_10(c): 789 def chromium_mac_sdk_10_10(c):
790 c.gyp_env.GYP_DEFINES['mac_sdk_min='] = '10.10' 790 c.gyp_env.GYP_DEFINES['mac_sdk_min'] = '10.10'
791 791
792 @config_ctx(includes=['chromium_clang']) 792 @config_ctx(includes=['chromium_clang'])
793 def cast_linux(c): 793 def cast_linux(c):
794 c.gyp_env.GYP_DEFINES['chromecast'] = 1 794 c.gyp_env.GYP_DEFINES['chromecast'] = 1
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698