mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
74 lines
1.5 KiB
Bash
74 lines
1.5 KiB
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
export TMPDIR="$PWD/tmp"
|
||
|
mkdir -p "$TMPDIR"
|
||
|
|
||
|
if [ "$1" = debug ]; then
|
||
|
out=out/Debug
|
||
|
flags='
|
||
|
is_debug=true
|
||
|
is_component_build=true
|
||
|
exclude_unwind_tables=false
|
||
|
remove_webcore_debug_symbols=false
|
||
|
use_thin_lto=false
|
||
|
use_lld=false'
|
||
|
bootstrap_flag=--debug
|
||
|
else
|
||
|
out=out/Release
|
||
|
flags='
|
||
|
is_debug=false
|
||
|
is_component_build=false
|
||
|
exclude_unwind_tables=true
|
||
|
remove_webcore_debug_symbols=true
|
||
|
use_thin_lto=true
|
||
|
use_lld=true'
|
||
|
fi
|
||
|
|
||
|
if [ -d /usr/lib/ccache ]; then
|
||
|
export PATH="/usr/lib/ccache:$PATH"
|
||
|
export CCACHE_SLOPPINESS=time_macros
|
||
|
export CCACHE_BASEDIR="$PWD"
|
||
|
export CCACHE_CPP2=yes
|
||
|
flags="$flags"'
|
||
|
cc_wrapper="ccache"'
|
||
|
fi
|
||
|
|
||
|
flags="$flags"'
|
||
|
is_clang=true
|
||
|
linux_use_bundled_binutils=false
|
||
|
|
||
|
fatal_linker_warnings=false
|
||
|
treat_warnings_as_errors=false
|
||
|
use_sysroot=false
|
||
|
|
||
|
fieldtrial_testing_like_official_build=true
|
||
|
|
||
|
use_ozone=true
|
||
|
ozone_auto_platforms=false
|
||
|
ozone_platform="headless"
|
||
|
ozone_platform_headless=true
|
||
|
|
||
|
use_cups=false
|
||
|
use_dbus=false
|
||
|
use_gio=false
|
||
|
use_platform_icu_alternatives=true
|
||
|
|
||
|
disable_file_support=true
|
||
|
enable_websockets=false
|
||
|
disable_ftp_support=true
|
||
|
use_kerberos=false
|
||
|
disable_brotli_filter=true
|
||
|
enable_mdns=false
|
||
|
enable_reporting=false
|
||
|
include_transport_security_state_preload_list=false
|
||
|
'
|
||
|
|
||
|
rm -rf "./$out"
|
||
|
|
||
|
CC=gcc CXX=g++ CCACHE_CPP2= ./tools/gn/bootstrap/bootstrap.py -s $bootstrap_flag
|
||
|
|
||
|
"./$out/gn" gen "$out" --args="$flags"
|
||
|
|
||
|
ninja -C "$out" naive_client
|