Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/simplefabric/BUILD b/apps/simplefabric/BUILD
new file mode 100644
index 0000000..03e118d
--- /dev/null
+++ b/apps/simplefabric/BUILD
@@ -0,0 +1,26 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [
+ "@concurrent_trees//jar",
+]
+
+BUNDLES = [
+ "//apps/simplefabric:onos-apps-simplefabric",
+]
+
+osgi_jar_with_tests(
+ test_deps = TEST_ADAPTERS,
+ web_context = "/onos/v1/simplefabric",
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Traffic Engineering",
+ description = "Simple Fabric application",
+ included_bundles = BUNDLES,
+ required_apps = [
+ "org.onosproject.openflow-base",
+ "org.onosproject.lldpprovider",
+ "org.onosproject.hostprovider",
+ ],
+ title = "SimpleFabric",
+ url = "http://onosproject.org",
+)