onos/core/api/BUILD
Ray Milkey 0bcdfd1e59 reformat bazel files to use Google coding standards
Change-Id: I320f0ca7ccb1b2247ccdd9fa58fefca7dad8a16f
2018-05-23 14:07:19 -07:00

28 lines
999 B
Python

COMPILE_DEPS = COMPILE + NETTY + JACKSON + METRICS + KRYO + [
"//utils/misc:onlab-misc",
"//utils/osgi:onlab-osgi",
"//utils/rest:onlab-rest",
"@joda_time//jar",
"@netty//jar",
]
osgi_jar_with_tests(
name = "onos-api",
exclude_tests = [
"org.onosproject.net.config.basics.AbstractConfigTest",
"org.onosproject.net.driver.AbstractDriverLoaderTest",
"org.onosproject.net.intent.AbstractIntentTest",
"org.onosproject.net.intent.ConnectivityIntentTest",
"org.onosproject.net.intent.IntentTest",
"org.onosproject.net.pi.runtime.PiConstantsTest",
"org.onosproject.security.SecurityUtilTest",
"org.onosproject.ui.AbstractUiTest",
"org.onosproject.ui.model.AbstractUiModelTest",
"org.onosproject.net.behaviour.QosIdTest",
],
visibility = ["//visibility:public"],
deps = COMPILE_DEPS,
#javadoc_files = glob(['src/main/javadoc/**/*']),
#javadoc_files_root = 'src/main/javadoc',
)