Add pom2mk, a maven repo -> Android.mk tool

This is still fairly simplistic, but good enough to test some build
system changes.

Bug: 33381544
Test: run, inspect output
Change-Id: Ia5c19570493116dca01cb65605cdf20becf8c1d0
diff --git a/cmd/pom2mk/Android.bp b/cmd/pom2mk/Android.bp
new file mode 100644
index 0000000..54422b1
--- /dev/null
+++ b/cmd/pom2mk/Android.bp
@@ -0,0 +1,19 @@
+// Copyright 2017 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+blueprint_go_binary {
+    name: "pom2mk",
+    deps: ["blueprint-proptools"],
+    srcs: ["pom2mk.go"],
+}