Remove Android.(bp|mk) from fmtlib.

Just to check that this project is unused on all branches/targets before
removing it from the manifest.

Bug: N/A
Test: builds
Change-Id: Ibc7ad8c15e45346f0c72d18ba84684512e7cbbf5
diff --git a/Android.bp b/Android.bp
deleted file mode 100644
index 6897195..0000000
--- a/Android.bp
+++ /dev/null
@@ -1,16 +0,0 @@
-cc_library {
-    name: "fmtlib",
-    srcs: ["fmt/format.cc"],
-    cflags: [
-        "-fno-exceptions",
-        "-Wall",
-        "-Werror",
-        // If built without exceptions, libfmt uses assert.
-        "-UNDEBUG",
-    ],
-    sanitize: {
-        misc_undefined: ["integer"],
-    },
-    local_include_dirs: ["."],
-    export_include_dirs: ["."],
-}
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 0660b8a..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,4 +0,0 @@
-# The Android.mk provided by the upstream fmtlib repository is for use with the
-# NDK and is not appropriate for the platform build. When integrating changes
-# from upstream, omit their Android.mk and leave the existing Android.bp
-# instead.