mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 02:31:29 +00:00
Python3 is used by default in recipes now and this annotation is not necessary anymore. Bug: 440235171 Change-Id: Ifdf357129c9e42fee3752ac1c07aa6e94171d81f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/6875483 Commit-Queue: Scott Lee <ddoman@chromium.org> Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Scott Lee <ddoman@chromium.org>
21 lines
363 B
Python
Executable File
21 lines
363 B
Python
Executable File
# Copyright 2016 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 = [
|
|
'presubmit',
|
|
'recipe_engine/json'
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.presubmit()
|
|
|
|
|
|
def GenTests(api):
|
|
yield (
|
|
api.test('basic') +
|
|
api.step_data('presubmit', api.json.output({}))
|
|
)
|