Changes to be able to debug native code.
This commit is contained in:
parent
0fc42e16f9
commit
e2049ddff8
2 changed files with 7 additions and 2 deletions
|
@ -25,7 +25,6 @@
|
|||
|
||||
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true"/>
|
||||
|
||||
<!-- Don't remove the space after android:debuggable: it prevents ndk-build to try including gdbserver and crash gcc -->
|
||||
<application android:label="@string/app_name" android:debuggable="true" android:icon="@drawable/logo_linphone_57x57" android:largeHeap="true">
|
||||
|
||||
<activity android:name="org.linphone.LinphoneLauncherActivity"
|
||||
|
|
|
@ -74,7 +74,9 @@ include $(linphone-root-dir)/submodules/tunnel/Android.mk
|
|||
endif
|
||||
|
||||
ifeq ($(BUILD_SILK), 1)
|
||||
ifeq (,$(DUMP_VAR))
|
||||
$(info Build proprietary SILK plugin for mediastreamer2)
|
||||
endif
|
||||
include $(linphone-root-dir)/submodules/mssilk/Android.mk
|
||||
endif
|
||||
|
||||
|
@ -83,7 +85,9 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|||
include $(linphone-root-dir)/submodules/msilbc/Android.mk
|
||||
|
||||
ifeq ($(BUILD_X264), 1)
|
||||
ifeq (,$(DUMP_VAR))
|
||||
$(info Build X264 plugin for mediastreamer2)
|
||||
endif
|
||||
include $(linphone-root-dir)/submodules/msx264/Android.mk
|
||||
ifeq ($(wildcard $(linphone-root-dir)/submodules/externals/prebuilts/x264.mk),)
|
||||
include $(linphone-root-dir)/submodules/externals/build/x264/Android.mk
|
||||
|
@ -104,7 +108,9 @@ endif #armeabi-v7a
|
|||
|
||||
|
||||
ifeq ($(BUILD_GPLV3_ZRTP), 1)
|
||||
ifeq (,$(DUMP_VAR))
|
||||
$(info Build ZRTP support - makes application GPLv3)
|
||||
endif
|
||||
ifeq ($(wildcard $(linphone-root-dir)/submodules/externals/prebuilts/zrtpcpp.mk),)
|
||||
include $(linphone-root-dir)/submodules/externals/build/libzrtpcpp/Android.mk
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue