Convert vintf_data to soong

Convert vendor_compatibility_matrix.xml, system_manifest.xml,
product_manifest.xml, and system_ext_manifest.xml to soong.

Bug: 340427295
Test: m vendor_compatibility_matrix.xml system_manifest.xml \
        product_manifest.xml system_ext_manifest.xml
Change-Id: I368fd5ac3d553d68989fe4ab8eb7369631f46900
diff --git a/vintfdata/Android.bp b/vintfdata/Android.bp
new file mode 100644
index 0000000..92fdab6
--- /dev/null
+++ b/vintfdata/Android.bp
@@ -0,0 +1,44 @@
+// Copyright 2018 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.
+
+package {
+    default_applicable_licenses: ["system_libhidl_license"],
+}
+
+vintf_data {
+    name: "vendor_compatibility_matrix.xml",
+    type: "device_cm",
+    filename: "compatibility_matrix.xml",
+    vendor: true,
+}
+
+vintf_data {
+    name: "system_manifest.xml",
+    type: "system_manifest",
+    filename: "manifest.xml",
+}
+
+vintf_data {
+    name: "product_manifest.xml",
+    type: "product_manifest",
+    filename: "manifest.xml",
+    product_specific: true,
+}
+
+vintf_data {
+    name: "system_ext_manifest.xml",
+    type: "system_ext_manifest",
+    filename: "manifest.xml",
+    system_ext_specific: true,
+}