diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-01-23 17:09:31 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-01-23 17:12:04 +0000 |
commit | 4b7b244fe71f5ed589b5e72f81b7b2f79096c68d (patch) | |
tree | 8f2f5f95c31891dd47b8f9fac76348a54ecb8913 /android/qa/desktop | |
parent | e74a3585a0b6ffed998800b2be8617c0c095e02e (diff) |
android: make desktop/ marginally debuggable
Diffstat (limited to 'android/qa/desktop')
-rw-r--r-- | android/qa/desktop/jni/Android.mk | 23 | ||||
-rw-r--r-- | android/qa/desktop/jni/Application.mk | 2 |
2 files changed, 25 insertions, 0 deletions
diff --git a/android/qa/desktop/jni/Android.mk b/android/qa/desktop/jni/Android.mk new file mode 100644 index 000000000000..c5c2ed3b0293 --- /dev/null +++ b/android/qa/desktop/jni/Android.mk @@ -0,0 +1,23 @@ +# Copyright (C) 2009 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := dummy +LOCAL_SRC_FILES := dummy.c +LOCAL_LDLIBS := + +include $(BUILD_SHARED_LIBRARY) diff --git a/android/qa/desktop/jni/Application.mk b/android/qa/desktop/jni/Application.mk new file mode 100644 index 000000000000..a11b28debc0c --- /dev/null +++ b/android/qa/desktop/jni/Application.mk @@ -0,0 +1,2 @@ +APP_ABI := armeabi-v7a +APP_PLATFORM := android-14 |