Add BUCK for tenbi and tetunnel
1. Add BUCK for tenbi and tetunnel
2. Fix check style errors in tenbi
3. Fix a BUCK error in tetopology
Change-Id: I618bdd2a119cc6be3250cb3c3e9002fa4f5e4750
diff --git a/apps/tenbi/yangmodel/BUCK b/apps/tenbi/yangmodel/BUCK
index 9c47ca7..4422110 100644
--- a/apps/tenbi/yangmodel/BUCK
+++ b/apps/tenbi/yangmodel/BUCK
@@ -1,9 +1,10 @@
-COMPILE = [
- '//lib:guava',
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS'
]
-#yang_library(
-# deps = COMPILE,
-# name = 'onos-app-tenbi-yangmodel',
-# srcs = glob(['src/main/**/*.yang']),
-#)
+yang_library(
+ deps = COMPILE_DEPS,
+ name = 'onos-apps-tenbi-yangmodel',
+ srcs = glob(['src/main/**/*.yang']),
+ visibility = [ 'PUBLIC' ],
+)