diff options
author | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:32:05 +0000 |
---|---|---|
committer | mseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:32:05 +0000 |
commit | cd98974050ce0725b99579b2c8b4c286bc5672ba (patch) | |
tree | b37ac3feef9a1a08acd66a992ea649cee50480d4 /ppapi | |
parent | 66aa1c74c97f012e533d77f4456a13afe65ac418 (diff) | |
download | chromium_src-cd98974050ce0725b99579b2c8b4c286bc5672ba.zip chromium_src-cd98974050ce0725b99579b2c8b4c286bc5672ba.tar.gz chromium_src-cd98974050ce0725b99579b2c8b4c286bc5672ba.tar.bz2 |
NaCl: Remove the nacl_standalone==1 case from plugin.gyp
We no longer support building the NaCl PPAPI proxy plugin as a
standalone plugin that can be loaded via --register-pepper-plugins.
BUG=http://code.google.com/p/nativeclient/issues/detail?id=2730
TEST=trybots
Review URL: https://codereview.chromium.org/11269026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164097 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/plugin.gyp | 113 |
1 files changed, 40 insertions, 73 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/plugin.gyp b/ppapi/native_client/src/trusted/plugin/plugin.gyp index 3521409..432c4b5 100644 --- a/ppapi/native_client/src/trusted/plugin/plugin.gyp +++ b/ppapi/native_client/src/trusted/plugin/plugin.gyp @@ -49,81 +49,48 @@ }], ], }, - 'targets': [], - 'conditions': [ - ['nacl_standalone==1', { - 'targets': [ - { - 'target_name': 'ppGoogleNaClPlugin', - 'type': 'shared_library', + 'targets': [ + { + 'target_name': 'ppGoogleNaClPluginChrome', + 'type': 'loadable_module', + 'sources': [ + '<@(common_sources)', + ], + 'xcode_settings': { + 'OTHER_LDFLAGS': [ + '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/trusted/plugin/ppapi.def' + ], + }, + 'dependencies': [ + '<(DEPTH)/media/media.gyp:shared_memory_support', + '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', + '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', + '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', + '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', + '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', + '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnacl_util', + '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gyp:platform_qual_lib', + '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped_desc', + '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:simple_service', + '<(DEPTH)/native_client/src/trusted/reverse_service/reverse_service.gyp:reverse_service', + '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', + '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy.gyp:nacl_ppapi_browser', + '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', + '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', + ], + 'conditions': [ + ['OS=="mac"', { + 'mac_bundle': 1, + 'product_name': 'ppGoogleNaClPluginChrome', + 'product_extension': 'plugin', + }], + ['OS=="mac" and mac_breakpad==1', { 'variables': { - 'target_base': 'ppNaClPlugin', + # A real .dSYM is needed for dump_syms to operate on. + 'mac_real_dsym': 1, }, - 'dependencies': [ - '<(DEPTH)/media/media.gyp:shared_memory_support', - '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', - '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', - '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', - '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', - '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', - '<(DEPTH)/native_client/src/third_party_mod/jsoncpp/jsoncpp.gyp:jsoncpp', - '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', - '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnacl_util', - '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gyp:platform_qual_lib', - '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped_desc', - '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:simple_service', - '<(DEPTH)/native_client/src/trusted/reverse_service/reverse_service.gyp:reverse_service', - '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', - '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy.gyp:nacl_ppapi_browser', - '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', - ], - }], - }], - ['nacl_standalone==0', { - 'targets': [ - { - 'target_name': 'ppGoogleNaClPluginChrome', - 'type': 'loadable_module', - 'sources': [ - '<@(common_sources)', - ], - 'xcode_settings': { - 'OTHER_LDFLAGS': [ - '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/trusted/plugin/ppapi.def' - ], - }, - 'dependencies': [ - '<(DEPTH)/media/media.gyp:shared_memory_support', - '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', - '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', - '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', - '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', - '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', - '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnacl_util', - '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gyp:platform_qual_lib', - '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped_desc', - '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:simple_service', - '<(DEPTH)/native_client/src/trusted/reverse_service/reverse_service.gyp:reverse_service', - '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', - '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy.gyp:nacl_ppapi_browser', - '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', - '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', - ], - 'conditions': [ - ['OS=="mac"', { - 'mac_bundle': 1, - 'product_name': 'ppGoogleNaClPluginChrome', - 'product_extension': 'plugin', - }], - ['OS=="mac" and mac_breakpad==1', { - 'variables': { - # A real .dSYM is needed for dump_syms to operate on. - 'mac_real_dsym': 1, - }, - }], - ], - }, + }], ], - }], + }, ], } |