Remove old recipe modules.
BUG= Review URL: https://codereview.chromium.org/1661043003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298654 0039d316-1c4b-4281-b951-d872f2087c98changes/01/332501/1
parent
c4eb24a907
commit
27e14242d2
@ -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')
|
|
@ -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
|
|
||||||
}
|
|
||||||
]
|
|
@ -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')
|
|
Loading…
Reference in New Issue