| Index: ppapi/ppapi_proxy.gypi
|
| diff --git a/ppapi/ppapi_proxy.gypi b/ppapi/ppapi_proxy.gypi
|
| index 0f6c83afd5750b9ca6a52805142ec00c7cfaac5a..a44e0667725104a32035068e429dc56db15e2193 100644
|
| --- a/ppapi/ppapi_proxy.gypi
|
| +++ b/ppapi/ppapi_proxy.gypi
|
| @@ -28,6 +28,15 @@
|
| '../..', # For nacl includes to work.
|
| ],
|
| 'sources': [
|
| + # Take some standalong files from the C++ wrapper allowing us to more
|
| + # easily make async callbacks in the proxy. We can't depend on the
|
| + # full C++ wrappers at this layer since the C++ wrappers expect
|
| + # symbols defining the globals for "being a plugin" which we are not.
|
| + # These callback files are standalone.
|
| + 'cpp/completion_callback.cc',
|
| + 'cpp/completion_callback.h',
|
| + 'utility/completion_callback_factory.h',
|
| +
|
| 'proxy/broker_dispatcher.cc',
|
| 'proxy/broker_dispatcher.h',
|
| 'proxy/dispatcher.cc',
|
| @@ -147,6 +156,8 @@
|
| 'proxy/ppp_text_input_proxy.h',
|
| 'proxy/ppp_video_decoder_proxy.cc',
|
| 'proxy/ppp_video_decoder_proxy.h',
|
| + 'proxy/proxy_array_output.cc',
|
| + 'proxy/proxy_array_output.h',
|
| 'proxy/proxy_channel.cc',
|
| 'proxy/proxy_channel.h',
|
| 'proxy/proxy_module.cc',
|
|
|