bd5629718f
java_library() targets must now list every dependency they need for an import. This permits buck to run more targets in parallel as it has a better view of the dependency graph, and opens the door for buck to make even more optimizations in the future. Change-Id: I132bf47a725e44ba5950ba6ca76bfa72c3876906
15 lines
292 B
Python
15 lines
292 B
Python
java_library(
|
|
name = 'cache-h2',
|
|
srcs = glob(['src/main/java/**/*.java']),
|
|
deps = [
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-server:server',
|
|
'//lib:guava',
|
|
'//lib:h2',
|
|
'//lib/guice:guice',
|
|
'//lib/jgit:jgit',
|
|
'//lib/log:api',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|