Hooked YANG GUI to the build process.
Change-Id: Idae3c8b55707a017918926b66e190d861bada3a9
diff --git a/apps/yms/gui/BUCK b/apps/yms/gui/BUCK
new file mode 100644
index 0000000..3d9073e
--- /dev/null
+++ b/apps/yms/gui/BUCK
@@ -0,0 +1,16 @@
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS',
+]
+
+osgi_jar_with_tests (
+ deps = COMPILE_DEPS,
+ resources_root = 'src/main/resources',
+ resources = glob(['src/main/resources/**']),
+)
+
+onos_app (
+ title = 'YANG Runtime GUI',
+ category = 'Utility',
+ url = 'http://onosproject.org',
+ description = 'YANG Runtime GUI application for visualization of registered YANG models.',
+)