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

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

Issue 2418233002: Add IGNORE_DEPS_CHANGES flag and coverage builder. (Closed)
Patch Set: Remove old expectation from patch. Created 4 years, 2 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 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 GYP_USE_SEPARATE_MSPDBSRV = Single(int, jsonish_fn=str, required=False), 64 GYP_USE_SEPARATE_MSPDBSRV = Single(int, jsonish_fn=str, required=False),
65 LLVM_DOWNLOAD_GOLD_PLUGIN = Single(int, required=False), 65 LLVM_DOWNLOAD_GOLD_PLUGIN = Single(int, required=False),
66 FORCE_MAC_TOOLCHAIN = Single(int, required=False), 66 FORCE_MAC_TOOLCHAIN = Single(int, required=False),
67 ), 67 ),
68 env = ConfigGroup( 68 env = ConfigGroup(
69 PATH = List(Path), 69 PATH = List(Path),
70 ADB_VENDOR_KEYS = Single(Path, required=False), 70 ADB_VENDOR_KEYS = Single(Path, required=False),
71 LLVM_FORCE_HEAD_REVISION = Single(basestring, required=False), 71 LLVM_FORCE_HEAD_REVISION = Single(basestring, required=False),
72 GOMA_STUBBY_PROXY_IP_ADDRESS = Single(basestring, required=False), 72 GOMA_STUBBY_PROXY_IP_ADDRESS = Single(basestring, required=False),
73 FORCE_MAC_TOOLCHAIN = Single(int, required=False), 73 FORCE_MAC_TOOLCHAIN = Single(int, required=False),
74 IGNORE_DEPS_CHANGES = Single(bool, required=False),
74 ), 75 ),
75 project_generator = ConfigGroup( 76 project_generator = ConfigGroup(
76 tool = Single(basestring, empty_val='gyp'), 77 tool = Single(basestring, empty_val='gyp'),
77 args = Set(basestring), 78 args = Set(basestring),
78 ), 79 ),
79 build_dir = Single(Path), 80 build_dir = Single(Path),
80 cros_sdk = ConfigGroup( 81 cros_sdk = ConfigGroup(
81 external = Single(bool, empty_val=True, required=False), 82 external = Single(bool, empty_val=True, required=False),
82 args = List(basestring), 83 args = List(basestring),
83 ), 84 ),
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 def cast_linux(c): 801 def cast_linux(c):
801 c.gyp_env.GYP_DEFINES['chromecast'] = 1 802 c.gyp_env.GYP_DEFINES['chromecast'] = 1
802 803
803 @config_ctx() 804 @config_ctx()
804 def internal_gles2_conform_tests(c): 805 def internal_gles2_conform_tests(c):
805 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1 806 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1
806 807
807 @config_ctx() 808 @config_ctx()
808 def build_angle_deqp_tests(c): 809 def build_angle_deqp_tests(c):
809 c.gyp_env.GYP_DEFINES['build_angle_deqp_tests'] = 1 810 c.gyp_env.GYP_DEFINES['build_angle_deqp_tests'] = 1
811
812 @config_ctx()
813 def ignore_deps_changes(c):
814 c.env.IGNORE_DEPS_CHANGES = True
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/api.py ('k') | scripts/slave/recipe_modules/chromium_tests/builders.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698