Detangling incubator: virtual nets, tunnels, resource labels, oh my

- virtual networking moved to /apps/virtual; with CLI & REST API
- tunnels and labels moved to /apps/tunnel; with CLI & REST API; UI disabled for now
- protobuf/models moved to /core/protobuf/models
- defunct grpc/rpc registry stuff left under /graveyard
- compile dependencies on /incubator moved to respective modules for compilation
- run-time dependencies will need to be re-tested for dependent apps

- /graveyard will be removed in not-too-distant future

Change-Id: I0a0b995c635487edcf95a352f50dd162186b0b39
diff --git a/apps/tetunnel/BUILD b/apps/tetunnel/BUILD
index bac5864..9467b00 100644
--- a/apps/tetunnel/BUILD
+++ b/apps/tetunnel/BUILD
@@ -1,4 +1,5 @@
 BUNDLES = [
+    "//apps/tunnel/api:onos-apps-tunnel-api",
     "//apps/tetunnel/api:onos-apps-tetunnel-api",
     "//apps/tetunnel/app:onos-apps-tetunnel-app",
 ]
diff --git a/apps/tetunnel/api/BUILD b/apps/tetunnel/api/BUILD
index 1fb7f05..0d45477 100644
--- a/apps/tetunnel/api/BUILD
+++ b/apps/tetunnel/api/BUILD
@@ -1,6 +1,6 @@
 COMPILE_DEPS = CORE_DEPS + [
+    "//apps/tunnel/api:onos-apps-tunnel-api",
     "//apps/tetopology/api:onos-apps-tetopology-api",
-    "//incubator/api:onos-incubator-api",
 ]
 
 osgi_jar_with_tests(
diff --git a/apps/tetunnel/app/BUILD b/apps/tetunnel/app/BUILD
index 17f4c6b..d5a367e 100644
--- a/apps/tetunnel/app/BUILD
+++ b/apps/tetunnel/app/BUILD
@@ -1,13 +1,13 @@
 COMPILE_DEPS = CORE_DEPS + KRYO + [
     "//apps/tetopology/api:onos-apps-tetopology-api",
     "//apps/tetunnel/api:onos-apps-tetunnel-api",
-    "//incubator/api:onos-incubator-api",
+    "//apps/tunnel/api:onos-apps-tunnel-api",
     "//core/store/serializers:onos-core-serializers",
 ]
 
 TEST_DEPS = TEST_ADAPTERS + [
     "//utils/osgi:onlab-osgi-tests",
-    "//incubator/api:onos-incubator-api-tests",
+    "//apps/tunnel/api:onos-apps-tunnel-api-tests",
 ]
 
 osgi_jar_with_tests(