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/apps/route-service/api/BUILD b/apps/route-service/api/BUILD
new file mode 100644
index 0000000..f33e002
--- /dev/null
+++ b/apps/route-service/api/BUILD
@@ -0,0 +1,10 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON
+
+TEST_DEPS = TEST + [
+    '//core/api:onos-api-tests',
+]
+
+osgi_jar_with_tests (
+    deps = COMPILE_DEPS,
+    test_deps = TEST_DEPS,
+)