mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
cdee8004c6
Bug: 1212081 Change-Id: Ibb90b861acb53655b33a67778f28a2d052698e18 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2979473 Reviewed-by: Robert Sesek <rsesek@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org>
27 lines
909 B
Python
27 lines
909 B
Python
# Copyright 2018 The Crashpad Authors. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
USE_PYTHON3 = True
|
|
|
|
|
|
def CheckChangeOnUpload(input_api, output_api):
|
|
return input_api.canned_checks.CheckChangedLUCIConfigs(
|
|
input_api, output_api)
|
|
|
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
|
return input_api.canned_checks.CheckChangedLUCIConfigs(
|
|
input_api, output_api)
|