diff options
author | Andreas Huber <andih@google.com> | 2009-09-11 09:54:52 -0700 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2009-09-11 09:54:52 -0700 |
commit | 8f0e4aace6c0643f7c4005184c7df2c73368f0dc (patch) | |
tree | fb0065cc26fe6f3b6dfc2104985684e8e9077966 /cmds | |
parent | 777893a928680f09e306b4b9efc1d5cf4479a9da (diff) | |
download | frameworks_av-8f0e4aace6c0643f7c4005184c7df2c73368f0dc.zip frameworks_av-8f0e4aace6c0643f7c4005184c7df2c73368f0dc.tar.gz frameworks_av-8f0e4aace6c0643f7c4005184c7df2c73368f0dc.tar.bz2 |
Only build the "full" stagefright (including MediaExtractors and MediaPlayer) if BUILD_WITH_FULL_STAGEFRIGHT define is set (to true).
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/stagefright/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/stagefright/Android.mk b/cmds/stagefright/Android.mk index 4550d1a..39ed769 100644 --- a/cmds/stagefright/Android.mk +++ b/cmds/stagefright/Android.mk @@ -1,3 +1,5 @@ +ifeq ($(BUILD_WITH_FULL_STAGEFRIGHT),true) + LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) @@ -38,3 +40,5 @@ LOCAL_CFLAGS += -Wno-multichar LOCAL_MODULE:= record include $(BUILD_EXECUTABLE) + +endif |