[fidl] Remove garnet/public/fidl

All references have been removed.

Change-Id: Ida9fdc243cb9541ecc1ae323c94ac1c52dc4380d
diff --git a/garnet/public/fidl/fuchsia.accessibility/BUILD.gn b/garnet/public/fidl/fuchsia.accessibility/BUILD.gn
deleted file mode 100644
index a568860..0000000
--- a/garnet/public/fidl/fuchsia.accessibility/BUILD.gn
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-group("fuchsia.accessibility") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.accessibility",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.fonts/BUILD.gn b/garnet/public/fidl/fuchsia.fonts/BUILD.gn
deleted file mode 100644
index 29a0035..0000000
--- a/garnet/public/fidl/fuchsia.fonts/BUILD.gn
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-group("fuchsia.fonts") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.fonts",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.timezone/BUILD.gn b/garnet/public/fidl/fuchsia.timezone/BUILD.gn
deleted file mode 100644
index 5894170..0000000
--- a/garnet/public/fidl/fuchsia.timezone/BUILD.gn
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-group("fuchsia.timezone") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.timezone",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.ui.scenic/BUILD.gn b/garnet/public/fidl/fuchsia.ui.scenic/BUILD.gn
deleted file mode 100644
index c343a95..0000000
--- a/garnet/public/fidl/fuchsia.ui.scenic/BUILD.gn
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-group("fuchsia.ui.scenic") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.ui.scenic",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.vulkan.loader/BUILD.gn b/garnet/public/fidl/fuchsia.vulkan.loader/BUILD.gn
deleted file mode 100644
index 06e1eeb..0000000
--- a/garnet/public/fidl/fuchsia.vulkan.loader/BUILD.gn
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-group("fuchsia.vulkan.loader") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.vulkan.loader",
-  ]
-}
-
-group("fuchsia.vulkan.loader_c_client") {
-  public_deps = [
-    "//sdk/fidl/fuchsia.vulkan.loader:fuchsia.vulkan.loader_c_client",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.wlan.mesh/BUILD.gn b/garnet/public/fidl/fuchsia.wlan.mesh/BUILD.gn
deleted file mode 100644
index 3b49d63..0000000
--- a/garnet/public/fidl/fuchsia.wlan.mesh/BUILD.gn
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 2019 The Fuchsia Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//build/fidl/fidl.gni")
-
-fidl("fuchsia.wlan.mesh") {
-  sdk_category = "partner"
-
-  sources = [
-    "wlan_mesh.fidl",
-  ]
-}
diff --git a/garnet/public/fidl/fuchsia.wlan.mesh/wlan_mesh.fidl b/garnet/public/fidl/fuchsia.wlan.mesh/wlan_mesh.fidl
deleted file mode 100644
index 54f9b6c..0000000
--- a/garnet/public/fidl/fuchsia.wlan.mesh/wlan_mesh.fidl
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2019 The Fuchsia Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-library fuchsia.wlan.mesh;
-
-// This file is shared between SME and MLME.
-
-struct MeshPath {
-    array<uint8>:6 dest_address;
-    array<uint8>:6 next_hop;
-    uint32 metric;
-};
-
-struct MeshPathTable {
-    vector<MeshPath> paths;
-};