Index: media/media_cdm.gypi |
diff --git a/media/media_cdm.gypi b/media/media_cdm.gypi |
index 7d927324ac31de75805f8d3fc56c59e0947fa06c..41fc3d2cc55dd503ec6dfdd10e11776059163689 100644 |
--- a/media/media_cdm.gypi |
+++ b/media/media_cdm.gypi |
@@ -153,6 +153,32 @@ |
}], |
], |
}, |
+ { |
+ # GN version: //media/cdm/ppapi:stubcdm (TODO!!!) |
+ 'target_name': 'stubcdm', |
xhwang
2015/04/02 18:51:52
We need to carefully test this to make sure it wor
jrummell
2015/04/02 23:47:55
Acknowledged.
|
+ 'type': 'none', |
+ 'conditions': [ |
+ ['os_posix == 1 and OS != "mac"', { |
+ 'type': 'loadable_module', |
+ }], |
+ ['OS == "mac" or OS == "win"', { |
+ 'type': 'shared_library', |
+ }], |
+ ['OS == "mac"', { |
+ 'xcode_settings': { |
+ 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
xhwang
2015/04/02 18:51:52
+rkuroiwa for comments: should this be @rpath?
jrummell
2015/04/02 23:47:55
This is simply copied from the clearkeycdm above.
|
+ }, |
+ }] |
+ ], |
+ 'defines': ['CDM_IMPLEMENTATION'], |
+ 'dependencies': [ |
+ '<(DEPTH)/base/base.gyp:base', |
+ ], |
+ 'sources': [ |
+ 'cdm/stub/stub_cdm.cc', |
+ 'cdm/stub/stub_cdm.h', |
+ ], |
+ }, |
], |
}], |
], |