Merge "Convert Android.mk to Android.bp."
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..4907176
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,12 @@
+android_app {
+    name: "Tag",
+    static_libs: [
+        "guava",
+        "com.android.vcard",
+        "android-support-v4",
+    ],
+    // Only compile source java files in this apk.
+    srcs: ["src/**/*.java"],
+    privileged: true,
+    sdk_version: "current",
+}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 5c938e2..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_STATIC_JAVA_LIBRARIES := \
-    guava com.android.vcard \
-    android-support-v4
-
-# Only compile source java files in this apk.
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_PACKAGE_NAME := Tag
-LOCAL_PRIVILEGED_MODULE := true
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_PACKAGE)