Index: third_party/recipe_engine/recipe_modules/properties/example.py |
diff --git a/scripts/slave/recipe_modules/properties/example.py b/third_party/recipe_engine/recipe_modules/properties/example.py |
similarity index 91% |
rename from scripts/slave/recipe_modules/properties/example.py |
rename to third_party/recipe_engine/recipe_modules/properties/example.py |
index 736f90b22cd60dbd55eca7ada01462be351d630b..fb80c29c5cb56e08457450152fbecc7fd1ab9abb 100644 |
--- a/scripts/slave/recipe_modules/properties/example.py |
+++ b/third_party/recipe_engine/recipe_modules/properties/example.py |
@@ -4,7 +4,10 @@ |
from infra.libs.infra_types import thaw |
-DEPS = ['properties', 'step'] |
+DEPS = [ |
+ 'recipe_engine/properties', |
+ 'recipe_engine/step', |
+] |
def RunSteps(api): |
api.step('echo', ['echo'] + [repr(api.properties.thaw()['test_prop'])]) |