mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
38 lines
1017 B
Python
38 lines
1017 B
Python
# Copyright 2018 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.
|
|
|
|
"""Presubmit script for android buildbot.
|
|
|
|
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
|
|
details on the presubmit API built into depot_tools.
|
|
"""
|
|
|
|
|
|
def CommonChecks(input_api, output_api):
|
|
base_android_jni_generator_dir = input_api.PresubmitLocalPath()
|
|
|
|
env = dict(input_api.environ)
|
|
env.update({
|
|
'PYTHONPATH': base_android_jni_generator_dir,
|
|
'PYTHONDONTWRITEBYTECODE': '1',
|
|
})
|
|
|
|
return input_api.canned_checks.RunUnitTests(
|
|
input_api,
|
|
output_api,
|
|
unit_tests=[
|
|
input_api.os_path.join(
|
|
base_android_jni_generator_dir, 'jni_generator_tests.py')
|
|
],
|
|
env=env,
|
|
)
|
|
|
|
|
|
def CheckChangeOnUpload(input_api, output_api):
|
|
return CommonChecks(input_api, output_api)
|
|
|
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
|
return CommonChecks(input_api, output_api)
|