mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
R=dnj@chromium.org, nodir@chromium.org, phajdan.jr@chromium.org Bug: Change-Id: I47d8f9311b6ee71583fb989888a1e4d28b5495df Reviewed-on: https://chromium-review.googlesource.com/520731 Commit-Queue: Robbie Iannucci <iannucci@chromium.org> Reviewed-by: Nodir Turakulov <nodir@chromium.org>
16 lines
275 B
Python
Executable File
16 lines
275 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',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.presubmit()
|
|
|
|
|
|
def GenTests(api):
|
|
yield api.test('basic')
|