Merge "Convert Android.mk file to Android.bp"
am: 7c18b9609f

Change-Id: I5c4e964b3e411631c2ce936e95e795b214499bf9
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..c9a65a8
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,6 @@
+android_app {
+    name: "BasicDreams",
+    // Only compile source java files in this apk.
+    srcs: ["src/**/*.java"],
+    platform_apis: true,
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 59d54fb..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,18 +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 := BasicDreams
-LOCAL_PRIVATE_PLATFORM_APIS := true
-
-# need tasty bits
-# LOCAL_CERTIFICATE := platform
-
-include $(BUILD_PACKAGE)
-
-# Use the following include to make our test apk.
-include $(call all-makefiles-under,$(LOCAL_PATH))