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

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: Roll to latest recipes-py 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
« no previous file with comments | « scripts/slave/recipes/android/builder.py ('k') | scripts/slave/recipes/android_webview_aosp_perf.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/android/perf.py
diff --git a/scripts/slave/recipes/android/perf.py b/scripts/slave/recipes/android/perf.py
index ff175f118def98872abc2c7e58dabc09e049dc61..7f64fd6c5e99d03e599803b2ac62b2ee4aa890d4 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',
« no previous file with comments | « scripts/slave/recipes/android/builder.py ('k') | scripts/slave/recipes/android_webview_aosp_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698