Add GN files for vendor_libs

Added BUILD.gn files for vendor_libs and vendor_libs/linux.

Bug: 21585592
Change-Id: I33f98421a94a4b4f530e48c94711775d776d02d7
diff --git a/vendor_libs/BUILD.gn b/vendor_libs/BUILD.gn
new file mode 100644
index 0000000..204162f
--- /dev/null
+++ b/vendor_libs/BUILD.gn
@@ -0,0 +1,21 @@
+#
+#  Copyright (C) 2015 Google, Inc.
+#
+#  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.
+#
+
+group("vendor-libs") {
+  deps = [
+    "linux:bt-vendor-linux"
+  ]
+}
diff --git a/vendor_libs/linux/BUILD.gn b/vendor_libs/linux/BUILD.gn
new file mode 100644
index 0000000..6026001
--- /dev/null
+++ b/vendor_libs/linux/BUILD.gn
@@ -0,0 +1,25 @@
+#
+#  Copyright (C) 2015 Google, Inc.
+#
+#  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.
+#
+
+shared_library("bt-vendor-linux") {
+  sources = [
+    "bt_vendor_linux.c"
+  ]
+
+  include_dirs = [
+    "//"
+  ]
+}