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

Unified Diff: scripts/slave/recipes/android/perf.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Change to googlesource Created 5 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/android/perf.py
diff --git a/scripts/slave/recipes/android/perf.py b/scripts/slave/recipes/android/perf.py
index fcc9c3c8a5cab8bfc5e31dddebda6078b05beabb..ec617e80c461a54800ead8c8815d8d29a0705811 100644
--- a/scripts/slave/recipes/android/perf.py
+++ b/scripts/slave/recipes/android/perf.py
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from infra.libs.infra_types import freeze, thaw
+from recipe_engine.types import freeze
DEPS = [
'adb',
@@ -103,7 +103,7 @@ def RunSteps(api):
buildername = api.properties['buildername']
# TODO(akuegel): Move the configs in builders.py in chromium_tests to this
# recipe, and get rid of duplications.
- builder = thaw(BUILDERS[mastername][buildername])
+ builder = dict(BUILDERS[mastername][buildername])
builder_config = builder.get('recipe_config', 'base_config')
kwargs = {
'REPO_NAME':'src',

Powered by Google App Engine
This is Rietveld 408576698