diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 22:58:51 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 22:58:51 +0000 |
commit | 3370e3b7ee18664a43a9977efeab2166624d0a32 (patch) | |
tree | d12fb54a46443e18a9fa9a671392966ba6751202 /webkit/tools | |
parent | e12ff8d6b82d6720a98bda252f5d1db0b51f322b (diff) | |
download | chromium_src-3370e3b7ee18664a43a9977efeab2166624d0a32.zip chromium_src-3370e3b7ee18664a43a9977efeab2166624d0a32.tar.gz chromium_src-3370e3b7ee18664a43a9977efeab2166624d0a32.tar.bz2 |
Revert 69762 - Erase the old NPAPI Pepper (Pepper 1) test plugin. I broke the compile with
my previous migration and it's not worth fixing.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/5968003
TBR=brettw@chromium.org
Review URL: http://codereview.chromium.org/6070004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69765 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/test_shell.gypi | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_shell.gypi b/webkit/tools/test_shell/test_shell.gypi index 2a82ec3..9ebd278 100644 --- a/webkit/tools/test_shell/test_shell.gypi +++ b/webkit/tools/test_shell/test_shell.gypi @@ -654,6 +654,76 @@ }], ], }, + { + 'target_name': 'npapi_pepper_test_plugin', + 'type': 'loadable_module', + 'mac_bundle': 1, + 'msvs_guid': '821F3B89-6AE1-4254-99CB-93C04D0A79BE', + 'dependencies': [ + '<(DEPTH)/gpu/gpu.gyp:pgl', + '<(DEPTH)/third_party/gles2_book/gles2_book.gyp:stencil_test', + 'npapi_test_common', + ], + 'sources': [ + '../npapi_pepper_test_plugin/main.cc', + '../npapi_pepper_test_plugin/pepper_3d_test.cc', + '../npapi_pepper_test_plugin/pepper_3d_test.h', + '../npapi_pepper_test_plugin/plugin.def', + '../npapi_pepper_test_plugin/plugin.rc', + '../npapi_pepper_test_plugin/test_factory.cc', + ], + 'include_dirs': [ + '../../..', + ], + 'conditions': [ + ['OS!="win"', { + # windows-specific resources + 'sources!': [ + '../npapi_pepper_test_plugin/plugin.def', + '../npapi_pepper_test_plugin/plugin.rc', + ], + }], + ['OS=="mac"', { + 'product_extension': 'plugin', + }], + ], + 'xcode_settings': { + 'INFOPLIST_FILE': '<(DEPTH)/webkit/tools/npapi_pepper_test_plugin/Info.plist', + }, + }, + { + 'target_name': 'copy_npapi_pepper_test_plugin', + 'type': 'none', + 'dependencies': [ + 'npapi_pepper_test_plugin', + ], + 'conditions': [ + ['OS=="win"', { + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)/plugins', + 'files': ['<(PRODUCT_DIR)/npapi_pepper_test_plugin.dll'], + }, + ], + }], + ['OS=="mac"', { + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)/plugins/', + 'files': ['<(PRODUCT_DIR)/npapi_pepper_test_plugin.plugin/'], + }, + ] + }], + ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { + 'copies': [ + { + 'destination': '<(PRODUCT_DIR)/plugins', + 'files': ['<(PRODUCT_DIR)/libnpapi_pepper_test_plugin.so'], + }, + ], + }], + ], + }, ], }], ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |