mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
- Minimal refactoring of P4 programs - Removed symlinks to BMv2 JSON/P4Info - Bumped p4c commit (which fixes known parser bug) - Renamed "default" pipeconf to "basic" (ONOS-6818) Change-Id: I319f8b142ab22dba9b15457e28cd62d17f78a423
30 lines
751 B
Python
30 lines
751 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:METRICS',
|
|
'//lib:KRYO',
|
|
'//core/common:onos-core-common',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//incubator/net:onos-incubator-net',
|
|
'//incubator/store:onos-incubator-store',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/store/dist:onos-core-dist',
|
|
'//core/store/dist:onos-core-dist-tests',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
'//pipelines/basic:onos-pipelines-basic',
|
|
'//lib:minimal-json',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-core-net',
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|