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

Unified Diff: media/media_untrusted.gyp

Issue 10826296: Introduce shared_memory_support media target for PPAPI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compiles! Created 8 years, 4 months 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
Index: media/media_untrusted.gyp
diff --git a/ppapi/ppapi_shared_untrusted.gyp b/media/media_untrusted.gyp
similarity index 63%
copy from ppapi/ppapi_shared_untrusted.gyp
copy to media/media_untrusted.gyp
index e0a08b47660556509b0f83f51f45920b32730787..4abbe5666609a09f87da88bb73a0990ae69efd54 100644
--- a/ppapi/ppapi_shared_untrusted.gyp
+++ b/media/media_untrusted.gyp
@@ -8,34 +8,34 @@
},
'includes': [
'../native_client/build/untrusted.gypi',
- 'ppapi_shared.gypi',
DaleCurtis 2012/08/16 23:32:43 For some reason git cl upload thinks I moved this
],
'conditions': [
['disable_nacl==0 and disable_nacl_untrusted==0', {
'targets': [
{
- 'target_name': 'ppapi_shared_untrusted',
+ 'target_name': 'shared_memory_support_untrusted',
'type': 'none',
'variables': {
- 'ppapi_shared_target': 1,
'nacl_untrusted_build': 1,
- 'nlib_target': 'libppapi_shared_untrusted.a',
+ 'nlib_target': 'libshared_memory_support_untrusted.a',
'build_glibc': 0,
'build_newlib': 1,
},
+ 'dependencies': [
+ '../native_client/tools.gyp:prep_toolchain',
+ '../base/base_untrusted.gyp:base_untrusted',
+ ],
'defines': [
- 'NACL_PPAPI_IPC_PROXY',
+ 'MEDIA_IMPLEMENTATION',
],
'include_dirs': [
'..',
- '../third_party/khronos',
],
- 'dependencies': [
- '../native_client/tools.gyp:prep_toolchain',
- '../base/base_untrusted.gyp:base_untrusted',
- '../gpu/command_buffer/command_buffer_untrusted.gyp:gles2_utils_untrusted',
- '../gpu/gpu_untrusted.gyp:command_buffer_client_untrusted',
- '../gpu/gpu_untrusted.gyp:gles2_implementation_untrusted',
+ 'includes': [
+ 'shared_memory_support.gypi',
+ ],
+ 'sources': [
+ '<@(shared_memory_support_sources)',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698