From e9f4469caac0a05d7a4fea768fcdc55b5fb92de4 Mon Sep 17 00:00:00 2001 From: Sasha Smundak Date: Wed, 9 Jan 2019 09:55:27 -0800 Subject: Convert Android.mk file to Android.bp See build/soong/README.md for more information. Change-Id: I677ff1f24d6d315a12263a454c735be40e148907 Fixes: 122332702 Test: treehugger --- Android.bp | 6 ++++++ Android.mk | 16 ---------------- 2 files changed, 6 insertions(+), 16 deletions(-) create mode 100644 Android.bp delete mode 100644 Android.mk diff --git a/Android.bp b/Android.bp new file mode 100644 index 0000000..4d3de00 --- /dev/null +++ b/Android.bp @@ -0,0 +1,6 @@ +android_app { + name: "PhotoTable", + // Only compile source java files in this apk. + srcs: ["src/**/*.java"], + sdk_version: "current", +} diff --git a/Android.mk b/Android.mk deleted file mode 100644 index e2f2f3a..0000000 --- a/Android.mk +++ /dev/null @@ -1,16 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_MODULE_TAGS := optional - -# Only compile source java files in this apk. -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_PACKAGE_NAME := PhotoTable - -LOCAL_SDK_VERSION := current - -include $(BUILD_PACKAGE) - -# Use the following include to make our test apk. -include $(call all-makefiles-under,$(LOCAL_PATH)) -- cgit v1.2.3