Add minimal Android launcher application

This commit is contained in:
Simon Fels 2016-06-30 17:37:07 +02:00
commit cfbfa78004
5 changed files with 114 additions and 4 deletions

View file

@ -1,4 +1,4 @@
LOCAL_PATH:= $(call my-dir)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libprocess-cpp-minimal
@ -52,6 +52,12 @@ LOCAL_CFLAGS := \
-std=c++1y
include $(BUILD_EXECUTABLE)
# The compositor has its Android.mk in its subfolder as it should not
# depend on any other anbox sources.
include $(call all-makefiles-under, $(LOCAL_PATH)/android/shared_compositor)
# Include the Android.mk files below will override LOCAL_PATH so we
# have to take a copy of it here.
TMP_PATH := $(LOCAL_PATH)
# The compositor and launcher have their own Android.mk in their subfolders
# as they should not depend on any other anbox sources.
# include $(LOCAL_PATH)/android/shared_compositor/Android.mk
include $(TMP_PATH)/android/launcher/Android.mk
include $(TMP_PATH)/android/shared_compositor/Android.mk