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

Unified Diff: scripts/slave/recipes/chromium_gn.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add builders property to chromium_tests test_api. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/chromium_gn.py
diff --git a/scripts/slave/recipes/chromium_gn.py b/scripts/slave/recipes/chromium_gn.py
index 6306182b963039d64198fc96c5f482fe7deea730..7cdf7077916cad1f10bb6023efee033c785791c1 100644
--- a/scripts/slave/recipes/chromium_gn.py
+++ b/scripts/slave/recipes/chromium_gn.py
@@ -458,12 +458,12 @@ def _GenStepsInternal(api):
test_spec_file = '%s.json' % mastername
test_spec = api.chromium_tests.read_test_spec(api, test_spec_file)
- tests = list(api.chromium.steps.generate_gtest(
+ tests = list(api.chromium_tests.steps.generate_gtest(
api, mastername, buildername, test_spec))
scripts_compile_targets = \
api.chromium.get_compile_targets_for_scripts().json.output
- tests += list(api.chromium.steps.generate_script(
+ tests += list(api.chromium_tests.steps.generate_script(
api, mastername, buildername, test_spec,
scripts_compile_targets=scripts_compile_targets))

Powered by Google App Engine
This is Rietveld 408576698