Remove Widevine CDM Dependency on STLPort
* Replace an stlport static assert with a C++11 static_assert. * Move some libraries that were being built with the NDK but statically included into platform code off the NDK. * Rebuild the obfuscated binaries to use the new STL. * Remove MIPS support temporarily due to an inability to generate obfuscated binaries for it. (To be fixed in b/19482469.) Bug: 15193147 Change-Id: Icc166583b0c6af68550baf17ab8c33076a1179d3
This commit is contained in:
committed by
John "Juce" Bruce
parent
bcaec72285
commit
723d67c88f
@@ -26,8 +26,8 @@ enum {
|
||||
kErrorTestMode = ERROR_DRM_VENDOR_MAX,
|
||||
};
|
||||
|
||||
_STLP_STATIC_ASSERT(static_cast<uint32_t>(kErrorWVDrmMaxErrorUsed) <=
|
||||
static_cast<uint32_t>(ERROR_DRM_VENDOR_MAX));
|
||||
static_assert(static_cast<uint32_t>(kErrorWVDrmMaxErrorUsed) <=
|
||||
static_cast<uint32_t>(ERROR_DRM_VENDOR_MAX), "");
|
||||
|
||||
} // namespace wvdrm
|
||||
|
||||
|
||||
Reference in New Issue
Block a user