| Index: mojo/mojo_public.gypi
|
| diff --git a/mojo/mojo_public.gypi b/mojo/mojo_public.gypi
|
| index fc4a2c2fa3d1c27ddbbb21fa43ac4edfe0512b9b..8f10f5c6917095b1304ce3b72cb597328005a5b1 100644
|
| --- a/mojo/mojo_public.gypi
|
| +++ b/mojo/mojo_public.gypi
|
| @@ -66,6 +66,16 @@
|
| 'public/gles2/gles2_private.h',
|
| ],
|
| 'conditions': [
|
| + ['OS=="android"', {
|
| + 'ldflags!': [
|
| + # Remove default export list because this lib has different exports.
|
| + '-Wl,--version-script=<(android_linker_script)',
|
| + ],
|
| + 'ldflags': [
|
| + # Don't export symbols from statically linked libraries.
|
| + '-Wl,--exclude-libs=ALL',
|
| + ],
|
| + }],
|
| ['OS=="mac"', {
|
| 'xcode_settings': {
|
| # Make it a run-path dependent library.
|
| @@ -95,6 +105,16 @@
|
| 'public/tests/test_support_private.h',
|
| ],
|
| 'conditions': [
|
| + ['OS=="android"', {
|
| + 'ldflags!': [
|
| + # Remove default export list because this lib has different exports.
|
| + '-Wl,--version-script=<(android_linker_script)',
|
| + ],
|
| + 'ldflags': [
|
| + # Don't export symbols from statically linked libraries.
|
| + '-Wl,--exclude-libs=ALL',
|
| + ],
|
| + }],
|
| ['OS=="mac"', {
|
| 'xcode_settings': {
|
| # Make it a run-path dependent library.
|
|
|