| Index: content/content_shell.gypi
|
| diff --git a/content/content_shell.gypi b/content/content_shell.gypi
|
| index 5879e2d58967f8ffad04ee529a92c129e3928a64..b78ba10796f09909ef1520db079e44ac92d8b5d5 100644
|
| --- a/content/content_shell.gypi
|
| +++ b/content/content_shell.gypi
|
| @@ -997,6 +997,19 @@
|
| '-lgabi++', # For rtti
|
| ],
|
| }],
|
| + ['component == "static_library"', {
|
| + 'ldflags!': [
|
| + # Don't need to strip symbols from libs, because exports are controlled
|
| + # through linker vesrion script.
|
| + '-Wl,--exclude-libs=ALL',
|
| + ],
|
| + 'ldflags': [
|
| + # Android exports in linker version script.
|
| + # TODO(ostap): Gyp doesn't corectly calculate path if <(DEPTH) is used here.
|
| + # Use <(DEPTH) when gyp is fixed or replaced with gn.
|
| + '-Wl,--version-script="../../build/android/android_exports.lst"',
|
| + ],
|
| + }],
|
| ],
|
| },
|
| {
|
|
|