1*4e366538SXin Li# Copyright 2018 The PDFium Authors. All rights reserved. 2*4e366538SXin Li# Use of this source code is governed by a BSD-style license that can be 3*4e366538SXin Li# found in the LICENSE file. 4*4e366538SXin Li 5*4e366538SXin LiUSE_PYTHON3 = True 6*4e366538SXin Li 7*4e366538SXin Li 8*4e366538SXin Lidef CheckChangeOnUpload(input_api, output_api): 9*4e366538SXin Li return input_api.canned_checks.CheckChangedLUCIConfigs(input_api, output_api) 10*4e366538SXin Li 11*4e366538SXin Li 12*4e366538SXin Lidef CheckChangeOnCommit(input_api, output_api): 13*4e366538SXin Li return input_api.canned_checks.CheckChangedLUCIConfigs(input_api, output_api) 14