Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: ppapi/ppapi.gyp

Issue 4985001: Initial audio implementation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/pepper_plugin_delegate_impl.cc ('k') | ppapi/proxy/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/ppapi.gyp
===================================================================
--- ppapi/ppapi.gyp (revision 67903)
+++ ppapi/ppapi.gyp (working copy)
@@ -495,11 +495,32 @@
# ],
},
{
+ 'target_name': 'ppapi_shared_impl',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'ppapi_c',
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'shared_impl/audio_impl.cc',
+ 'shared_impl/audio_impl.h',
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
+ }],
+ ],
+ },
+ {
'target_name': 'ppapi_proxy',
'type': 'static_library',
'dependencies': [
'../ipc/ipc.gyp:ipc',
'ppapi_c',
+ 'ppapi_shared_impl',
],
'all_dependent_settings': {
'include_dirs': [
@@ -536,6 +557,10 @@
'proxy/ppapi_messages_internal.h',
'proxy/ppapi_param_traits.cc',
'proxy/ppapi_param_traits.h',
+ 'proxy/ppb_audio_config_proxy.cc',
+ 'proxy/ppb_audio_config_proxy.h',
+ 'proxy/ppb_audio_proxy.cc',
+ 'proxy/ppb_audio_proxy.h',
'proxy/ppb_buffer_proxy.cc',
'proxy/ppb_buffer_proxy.h',
'proxy/ppb_char_set_proxy.cc',
« no previous file with comments | « chrome/renderer/pepper_plugin_delegate_impl.cc ('k') | ppapi/proxy/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698