Slide 26
Slide 26 text
Build Files
java_binary(
name = 'example-binary',
deps = [
':example',
],
)
java_library(
name = 'example',
srcs = glob(['*.java']),
deps = [
'//third-party/guava:guava',
],
visibility = [
'//javatests/...',
],
)
Build file. Typically named BUCK
A build rule of type "java_binary"
A target defined in the same build file