From ab852cc0b6fe6e3a8b398b7fa0313a1425adf31b Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Fri, 3 Aug 2012 10:49:00 +0100 Subject: android: share the clobbering of ant rules to not compress resources Change-Id: Id2aa869f05b09dc22676d63390ec10bf575571ef --- android/qa/desktop/Makefile | 14 ++++++++++---- android/qa/desktop/build.xml | 31 +------------------------------ android/qa/sc/build.xml | 31 +------------------------------ android/qa/simple/build.xml | 31 +------------------------------ 4 files changed, 13 insertions(+), 94 deletions(-) (limited to 'android/qa') diff --git a/android/qa/desktop/Makefile b/android/qa/desktop/Makefile index 7b056e19ec2c..9630445f4a87 100644 --- a/android/qa/desktop/Makefile +++ b/android/qa/desktop/Makefile @@ -14,8 +14,13 @@ BOOTSTRAP=org.libreoffice.android.Bootstrap APP_DATA_PATH=/data/data/$(APP_PACKAGE) -SODEST=libs/armeabi-v7a -OBJLOCAL=obj/local/armeabi-v7a +ifeq ($(CPU),I) +ABI_PATH=x86 +else +ABI_PATH=armeabi-v7a +endif +SODEST=libs/$(ABI_PATH) +OBJLOCAL=obj/local/$(ABI_PATH) define COPY cp $(1) $(SODEST)$(if $(2),/$(2)) && $(STRIP) --strip-debug $(SODEST)$(if $(2),/$(2),/$(notdir $(1))) && \ @@ -134,6 +139,7 @@ copy-stuff: buildrcs icuuclo \ jvmaccessgcc3 \ jvmfwk \ + libotouchlo \ lnglo \ introspection.uno \ lnthlo \ @@ -192,7 +198,7 @@ copy-stuff: buildrcs # # Then the shared GNU C++ library - $(call COPY,$(ANDROID_NDK_HOME)/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/libgnustl_shared.so) + $(call COPY,$(ANDROID_NDK_HOME)/sources/cxx-stl/gnu-libstdc++/libs/$(ABI_PATH)/libgnustl_shared.so) # # Then other "assets" that can be left in the .apk. Let the directory # structure under assets mimic the install set - except for the fact @@ -233,7 +239,7 @@ copy-stuff: buildrcs # Then gdbserver and gdb.setup so that we can debug with ndk-gdb. # cp $(ANDROID_NDK_HOME)/toolchains/arm-linux-androideabi-4.4.3/prebuilt/gdbserver $(SODEST) - echo set solib-search-path ./obj/local/armeabi-v7a >$(SODEST)/gdb.setup + echo set solib-search-path ./obj/local/$(ABI_PATH) >$(SODEST)/gdb.setup build-ant: copy-stuff properties diff --git a/android/qa/desktop/build.xml b/android/qa/desktop/build.xml index a55977ad994e..8c88493bc2f3 100644 --- a/android/qa/desktop/build.xml +++ b/android/qa/desktop/build.xml @@ -81,34 +81,5 @@ --> - - - - - - - - - - - - - - - + diff --git a/android/qa/sc/build.xml b/android/qa/sc/build.xml index a55977ad994e..8c88493bc2f3 100644 --- a/android/qa/sc/build.xml +++ b/android/qa/sc/build.xml @@ -81,34 +81,5 @@ --> - - - - - - - - - - - - - - - + diff --git a/android/qa/simple/build.xml b/android/qa/simple/build.xml index b5fd582c9a52..1ac60081016b 100644 --- a/android/qa/simple/build.xml +++ b/android/qa/simple/build.xml @@ -81,34 +81,5 @@ --> - - - - - - - - - - - - - - - + -- cgit