gerrit/gerrit-util-http/BUCK
David Pursehouse c3f35e61b8 RequestUtilTest: Convert to use Google Truth
Change-Id: Ib6d4cbded2ce2c9d731ff9621ed69dc7c136265d
2015-06-04 09:41:29 +09:00

22 lines
485 B
Python

java_library(
name = 'http',
srcs = glob(['src/main/java/**/*.java']),
provided_deps = ['//lib:servlet-api-3_1'],
visibility = ['PUBLIC'],
)
java_test(
name = 'http_tests',
srcs = glob(['src/test/java/**/*.java']),
deps = [
':http',
'//lib:junit',
'//lib:servlet-api-3_1',
'//lib:truth',
'//lib/easymock:easymock',
],
source_under_test = [':http'],
# TODO(sop) Remove after Buck supports Eclipse
visibility = ['//tools/eclipse:classpath'],
)