Yi Tseng
Committed by Gerrit Code Review

Fix VPLS bundle error while using buck run

VPLS app might not be actived when we use `buck run onos` command.
Error message shows it can't find onos-app-routing bundle.
Add `included_bundles` to settings can fix this problem.

Change-Id: I038a4a45ba609e5bcb8cecef7ee5dbd5d7ab6684
...@@ -10,6 +10,12 @@ COMPILE_DEPS = [ ...@@ -10,6 +10,12 @@ COMPILE_DEPS = [
10 '//apps/routing:onos-apps-routing', 10 '//apps/routing:onos-apps-routing',
11 ] 11 ]
12 12
13 +BUNDLES = [
14 + '//apps/vpls:onos-apps-vpls',
15 + '//apps/routing-api:onos-apps-routing-api',
16 + '//apps/routing:onos-apps-routing',
17 +]
18 +
13 TEST_DEPS = [ 19 TEST_DEPS = [
14 '//lib:TEST_ADAPTERS', 20 '//lib:TEST_ADAPTERS',
15 ] 21 ]
...@@ -23,5 +29,6 @@ onos_app ( ...@@ -23,5 +29,6 @@ onos_app (
23 title = 'VLAN L2 Broadcast Network App', 29 title = 'VLAN L2 Broadcast Network App',
24 category = 'Traffic Steering', 30 category = 'Traffic Steering',
25 url = 'http://onosproject.org', 31 url = 'http://onosproject.org',
32 + included_bundles = BUNDLES,
26 description = 'Application to create L2 broadcast network using VLAN.', 33 description = 'Application to create L2 broadcast network using VLAN.',
27 ) 34 )
......