Build segment routing app with bazel

- add support for apps depending on other apps
- build files for route-service and segment routing

Change-Id: I4850aacfe050f802072e2d59a6a21bcefd784e67
diff --git a/web/BUILD b/web/BUILD
new file mode 100644
index 0000000..05bc4a8
--- /dev/null
+++ b/web/BUILD
@@ -0,0 +1,14 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+    '@javax_ws_rs_api//jar',
+    '//utils/rest:onlab-rest',
+    '//apps/segmentrouting/app:onos-apps-segmentrouting-app',
+]
+
+osgi_jar_with_tests (
+    deps = COMPILE_DEPS,
+    #web_context = '/onos/segmentrouting',
+    #api_title = 'Segment Routing Rest Server',
+    #api_version = '1.0',
+    #api_description = 'REST API for Segment Routing Application',
+    #api_package = 'org.onosproject.segmentrouting.web',
+)