summaryrefslogtreecommitdiffstats
path: root/ppapi/ppapi_proxy.gypi
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-26 22:43:20 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-26 22:43:20 +0000
commitf0a04c42aaf23a3f3c36a231905052ae9f86790f (patch)
tree98c4d870e903f987069df03f69b5e5f31e45cb96 /ppapi/ppapi_proxy.gypi
parent6ed0388cbf008ea2c07ef81ef967f0639f982887 (diff)
downloadchromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.zip
chromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.tar.gz
chromium_src-f0a04c42aaf23a3f3c36a231905052ae9f86790f.tar.bz2
Create ppapi_proxy.dll and ppapi_shared.dll.
This involves introducing the following macros: PPAPI_PROXY_EXPORT - for symbols exported from ppapi/proxy PPAPI_SHARED_EXPORT - for symbols exported from ppapi/shared_impl PPAPI_THUNK_EXPORT - for symbols exported from ppapi/thunk NOTE: shared_impl and thunk are still linked together, but I thought it was cleaner to give thunk its own macro. R=brettw@chromium.org Review URL: http://codereview.chromium.org/7687005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_proxy.gypi')
-rw-r--r--ppapi/ppapi_proxy.gypi15
1 files changed, 5 insertions, 10 deletions
diff --git a/ppapi/ppapi_proxy.gypi b/ppapi/ppapi_proxy.gypi
index 65b4039..35b0a03 100644
--- a/ppapi/ppapi_proxy.gypi
+++ b/ppapi/ppapi_proxy.gypi
@@ -6,10 +6,12 @@
'targets': [
{
'target_name': 'ppapi_proxy',
- 'type': 'static_library',
+ 'type': '<(component)',
'dependencies': [
- '../ipc/ipc.gyp:ipc',
+ '../base/base.gyp:base',
+ '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../gpu/gpu.gyp:gpu_ipc',
+ '../ipc/ipc.gyp:ipc',
'../skia/skia.gyp:skia',
'../ui/gfx/surface/surface.gyp:surface',
'ppapi.gyp:ppapi_c',
@@ -158,14 +160,7 @@
'proxy/var_serialization_rules.h',
],
'defines': [
- ],
- 'conditions': [
- ['OS=="win"', {
- }],
- ['OS=="linux"', {
- }],
- ['OS=="mac"', {
- }]
+ 'PPAPI_PROXY_IMPLEMENTATION',
],
},
],