Merge "Convert Android.mk file to Android.bp" am: 7c18b9609f am: 10d953e9e6
am: 8bb1ebde1b

Change-Id: I5ea5e49c013e525a25a69edb35d82f89ea40bb85
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))