82e66ee4e5
Try to reduce the size of the top-level BUCK file by moving anything that has to do with Eclipse project generation and classpath management into tools/eclipse. Change-Id: Id779eaff4fe732908b28a8e3441004e364b59e21
14 lines
273 B
Python
14 lines
273 B
Python
java_binary(
|
|
name = 'main_bin',
|
|
main_class = 'Main',
|
|
deps = [':main_lib'],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'main_lib',
|
|
srcs = ['src/main/java/Main.java'],
|
|
deps = ['//gerrit-launcher:launcher'],
|
|
visibility = ['//tools/eclipse:classpath'],
|
|
)
|