mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 01:06:46 +08:00
TBR:fbarchard Bug: 868176 Change-Id: Ibb2628cac8b26dc9771fc9bab6c00889d6d906eb Reviewed-on: https://chromium-review.googlesource.com/1153647 Reviewed-by: Ryan Tseng <hinoka@chromium.org> Commit-Queue: Ryan Tseng <hinoka@chromium.org>
12 lines
420 B
Python
12 lines
420 B
Python
# Copyright 2018 The PDFium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
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)
|