| Index: build/config/mac/symbols.gni
|
| diff --git a/build/config/mac/symbols.gni b/build/config/mac/symbols.gni
|
| index 9574e1d16c87fe20f3764bb775b7aabb1665104c..b54003a2b3f445cefab7c519c1782baea1364125 100644
|
| --- a/build/config/mac/symbols.gni
|
| +++ b/build/config/mac/symbols.gni
|
| @@ -21,4 +21,13 @@ declare_args() {
|
| # linked target and apply custom -Wcrl,strip flags. See
|
| # //build/toolchain/mac/linker_driver.py for more information.
|
| enable_stripping = is_official_build
|
| +
|
| + # Save unstripped copies of targets with a ".unstripped" suffix. This is
|
| + # useful to preserve the original output when enable_stripping=true.
|
| + save_unstripped_output = false
|
| +}
|
| +
|
| +if (save_unstripped_output) {
|
| + assert(enable_stripping,
|
| + "save_unstripped_output=true requires enable_stripping=true")
|
| }
|
|
|