diff --git a/recipe_modules/depot_tools/__init__.py b/recipe_modules/depot_tools/__init__.py deleted file mode 100644 index c92b78dd22..0000000000 --- a/recipe_modules/depot_tools/__init__.py +++ /dev/null @@ -1 +0,0 @@ -DEPS = [] diff --git a/recipe_modules/depot_tools/api.py b/recipe_modules/depot_tools/api.py deleted file mode 100644 index 3685330e90..0000000000 --- a/recipe_modules/depot_tools/api.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (c) 2015 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -"""Entry point for interacting with depot_tools from recipes.""" - -from recipe_engine import recipe_api - -class DepotToolsApi(recipe_api.RecipeApi): - @property - def gclient_py(self): - return self.package_resource('gclient.py') diff --git a/recipe_modules/depot_tools/example.expected/basic.json b/recipe_modules/depot_tools/example.expected/basic.json deleted file mode 100644 index 6d2435cc65..0000000000 --- a/recipe_modules/depot_tools/example.expected/basic.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "cmd": [ - "python", - "-u", - "RECIPE_PACKAGE[depot_tools]/gclient.py", - "--help" - ], - "cwd": "[SLAVE_BUILD]", - "name": "gclient help" - }, - { - "name": "$result", - "recipe_result": null, - "status_code": 0 - } -] \ No newline at end of file diff --git a/recipe_modules/depot_tools/example.py b/recipe_modules/depot_tools/example.py deleted file mode 100644 index 4afa8e8ee7..0000000000 --- a/recipe_modules/depot_tools/example.py +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (c) 2015 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -DEPS = [ - 'recipe_engine/python', - 'depot_tools', -] - -def RunSteps(api): - api.python('gclient help', api.depot_tools.gclient_py, ['--help']) - -def GenTests(api): - yield api.test('basic')