diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-05-02 18:02:39 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-05-21 08:22:53 -0700 |
commit | 4495a87138cd1f0fdf62a9c4649e2c2bdbd3527d (patch) | |
tree | 0715734a54cb6631bf06b37225e7957718945a65 /libdrmdecrypt | |
parent | d822531f1f2b4c0fea1cd971d28bd1e552ed67ba (diff) | |
download | hardware_ti_omap4xxx-4495a87138cd1f0fdf62a9c4649e2c2bdbd3527d.zip hardware_ti_omap4xxx-4495a87138cd1f0fdf62a9c4649e2c2bdbd3527d.tar.gz hardware_ti_omap4xxx-4495a87138cd1f0fdf62a9c4649e2c2bdbd3527d.tar.bz2 |
Fix secondary builds (AOSP, panda) - do not merge
liboemcrypto only exists in vendor/ builds
BOARD_USES_SECURE_SERVICES isn't set in all builds
Bug: 6521860
Change-Id: Ied82b1f8dc177feb710e8d9b0abd42fbfac4d9f9
Diffstat (limited to 'libdrmdecrypt')
-rw-r--r-- | libdrmdecrypt/Android.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libdrmdecrypt/Android.mk b/libdrmdecrypt/Android.mk index 2f1b644..b584385 100644 --- a/libdrmdecrypt/Android.mk +++ b/libdrmdecrypt/Android.mk @@ -9,10 +9,12 @@ LOCAL_C_INCLUDES:= \ $(TOP)/frameworks/native/include/media/hardware \ $(TOP)/vendor/widevine/proprietary/cryptoPlugin \ -LOCAL_STATIC_LIBRARIES := \ - liboemcrypto \ +ifeq ($(BOARD_USES_SECURE_SERVICES),true) +LOCAL_STATIC_LIBRARIES += \ libtee_client_api_driver \ +endif + LOCAL_SHARED_LIBRARIES := \ libstagefright_foundation \ liblog \ |