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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/api.py

Issue 2282913002: Delete all references to GIT_MODE=True from build (Closed)
Patch Set: Created 4 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 collections 5 import collections
6 import contextlib 6 import contextlib
7 import copy 7 import copy
8 import itertools 8 import itertools
9 import json 9 import json
10 10
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 # not support that. 120 # not support that.
121 self.m.chromium.c.gyp_env.GYP_DEFINES.update( 121 self.m.chromium.c.gyp_env.GYP_DEFINES.update(
122 bot_config.get('GYP_DEFINES', {})) 122 bot_config.get('GYP_DEFINES', {}))
123 if bot_config.get('use_isolate'): 123 if bot_config.get('use_isolate'):
124 self.m.isolate.set_isolate_environment(self.m.chromium.c) 124 self.m.isolate.set_isolate_environment(self.m.chromium.c)
125 125
126 self.m.gclient.set_config( 126 self.m.gclient.set_config(
127 bot_config.get('gclient_config'), 127 bot_config.get('gclient_config'),
128 PATCH_PROJECT=self.m.properties.get('patch_project'), 128 PATCH_PROJECT=self.m.properties.get('patch_project'),
129 BUILDSPEC_VERSION=buildspec_version, 129 BUILDSPEC_VERSION=buildspec_version,
130 GIT_MODE=True,
131 **bot_config.get('gclient_config_kwargs', {})) 130 **bot_config.get('gclient_config_kwargs', {}))
132 131
133 self.m.test_results.set_config( 132 self.m.test_results.set_config(
134 bot_config.get('test_results_config')) 133 bot_config.get('test_results_config'))
135 134
136 if bot_config.get('android_config'): 135 if bot_config.get('android_config'):
137 self.m.chromium_android.configure_from_properties( 136 self.m.chromium_android.configure_from_properties(
138 bot_config.get('android_config'), 137 bot_config.get('android_config'),
139 **bot_config.get('chromium_config_kwargs', {})) 138 **bot_config.get('chromium_config_kwargs', {}))
140 139
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
1012 targets in |compile_targets|.""" 1011 targets in |compile_targets|."""
1013 result = [] 1012 result = []
1014 for test in tests: 1013 for test in tests:
1015 test_compile_targets = test.compile_targets(api) 1014 test_compile_targets = test.compile_targets(api)
1016 # Always return tests that don't require compile. Otherwise we'd never 1015 # Always return tests that don't require compile. Otherwise we'd never
1017 # run them. 1016 # run them.
1018 if ((set(compile_targets) & set(test_compile_targets)) or 1017 if ((set(compile_targets) & set(test_compile_targets)) or
1019 not test_compile_targets): 1018 not test_compile_targets):
1020 result.append(test) 1019 result.append(test)
1021 return result 1020 return result
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_android/api.py ('k') | scripts/slave/recipe_modules/chromium_tests/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698