mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
25c079d731
The latest build rules have the ffuchsia-api-level. Need https://crrev.com/c/5586319. Bug: fuchsia:42085580, fuchsia:327691011 Change-Id: I21383e02f9fff3db9405c0dbe42051122a325003 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/5585353 Commit-Queue: Zijie He <zijiehe@google.com> Reviewed-by: Mark Mentovai <mark@chromium.org>
46 lines
1.5 KiB
Python
Executable File
46 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright 2024 The Crashpad Authors
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
import platform
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
def main(args):
|
|
"""
|
|
Executes the test-scripts with required environment variables. It acts like
|
|
/usr/bin/env, but provides some extra functionality to dynamically set up
|
|
the environment variables.
|
|
|
|
Args:
|
|
args: the command line arguments without the script name itself.
|
|
"""
|
|
os.environ['SRC_ROOT'] = os.path.abspath(
|
|
os.path.join(os.path.dirname(__file__), '..'))
|
|
|
|
assert platform.system() == 'Linux', 'Unsupported OS ' + platform.system()
|
|
os.environ['FUCHSIA_SDK_ROOT'] = os.path.join(
|
|
os.environ['SRC_ROOT'], 'third_party/fuchsia/sdk/linux-amd64/')
|
|
os.environ['FUCHSIA_GN_SDK_ROOT'] = os.path.join(
|
|
os.environ['SRC_ROOT'], 'third_party/fuchsia-gn-sdk/src')
|
|
|
|
return subprocess.run(args).returncode
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|