mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
hostLearning config - true: enable host learning - false or not provided: disable host learning suppressHost config - all connect points listed here will be ignored - no effect if hostLearning is false - accept all hosts if this config is not provided Change-Id: Id4a60bd47cac1f226ab8ba5391931ad2fb798529
27 lines
611 B
Python
27 lines
611 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:javax.ws.rs-api',
|
|
'//cli:onos-cli',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//providers/netcfghost:onos-providers-netcfghost',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Segment Routing App',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
description = 'Segment routing application.',
|
|
)
|