Enable building WebRTCDemo apk using Release webrtc libs, take 2.

Now passing BUILDTYPE=Release to both the make that builds the libs and the
ndk-build that builds the app makes the app use non-Debug libs.

Review URL: https://webrtc-codereview.appspot.com/966029

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3201 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
fischman@webrtc.org 2012-11-29 18:06:00 +00:00
parent bd941d3f4c
commit be5b5ba490

View File

@ -10,7 +10,10 @@ LOCAL_PATH := $(call my-dir)
include $(call all-makefiles-under, $(LOCAL_PATH))
MY_LIBS_PATH := ../../../../../out/Debug/obj.target
# Specify BUILDTYPE=Release on the command line for a release build.
BUILDTYPE ?= Debug
MY_LIBS_PATH := ../../../../../out/$(BUILDTYPE)/obj.target
include $(CLEAR_VARS)
LOCAL_MODULE := libvoice_engine_core