Question regarding GN arguments – githubmemory
Does this build include the following gn build arguments?
is_offical_build=true
is_debug=false
is_component_build=false
Explanation:
is_official_build
Set to enable the official build level of optimization. This has nothing to do with branding, but enables an additional level of optimization above release (!is_debug). Defaults to false
.
Should be enabled for builds intended for users.
is_debug
Debug build. Defaults to true
.
Should be disabled for builds intended for users.
is_component_build
Component build. Setting to true compiles targets declared as “components” as shared libraries loaded dynamically. This speeds up development time. When false, components will be linked statically. Defaults to true
.
Should be disabled for builds intended for users. This extends clang’s CFI to the statically-linked libraries, improving security.
If not, please include them in future builds, thank you.
Read more here: Source link