mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
This property is not used anymore. Bug: 1002153 Change-Id: I19a503a73ec00e9121b2d9a2c130824a974d307a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1877747 Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Andrii Shyshkalov <tandrii@google.com>
20 lines
590 B
Python
20 lines
590 B
Python
# Copyright 2019 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.
|
|
|
|
from recipe_engine import recipe_test_api
|
|
|
|
from PB.recipe_modules.depot_tools.presubmit import properties
|
|
|
|
class PresubmitTestApi(recipe_test_api.RecipeTestApi):
|
|
|
|
def __call__(self, runhooks=False, timeout_s=480):
|
|
return self.m.properties(
|
|
**{
|
|
'$depot_tools/presubmit': properties.InputProperties(
|
|
runhooks=runhooks,
|
|
timeout_s=timeout_s,
|
|
),
|
|
}
|
|
)
|