加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chrome-wrapper 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
misaka00251 提交于 2024-07-02 15:02 . Upgrade to version 125
#!/bin/bash
#
# Copyright (c) 2011 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.
# Let the wrapped binary know that it has been run through the wrapper.
export CHROME_WRAPPER="`readlink -f "$0"`"
HERE="`dirname "$CHROME_WRAPPER"`"
# Always use our versions of ffmpeg libs.
# This also makes RPMs find the compatibly-named library symlinks.
export LD_LIBRARY_PATH="$HERE${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
export CHROME_VERSION_EXTRA="stable"
# We don't want bug-buddy intercepting our crashes. http://crbug.com/24120
export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME
# Allow root usage
no_sandbox=
if [ "`id -u`" == "0" ]; then
no_sandbox=--no-sandbox
fi
# If uname is riscv64, then allow usage too
if [ "`uname -m`" == "riscv64" ]; then
no_sandbox=--no-sandbox
fi
# Sanitize std{in,out,err} because they'll be shared with untrusted child
# processes (http://crbug.com/376567).
exec < /dev/null
exec > >(exec cat)
exec 2> >(exec cat >&2)
# Note: exec -a below is a bashism.
exec -a "$0" "$HERE/chrome" $no_sandbox "$@"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化