gerrit/gerrit-util-http/BUCK
David Pletcher 015ce0a2f2 Refactor RequestUtil into a separate package
Move RequestUtil into its own package. This facilitates
reuse of request attribute accessor methods by external
libraries.

Change-Id: Id002eb4f72827d65087a999adbd2ba9a58795fe2
2014-10-30 15:35:26 -07:00

21 lines
466 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/easymock:easymock',
],
source_under_test = [':http'],
# TODO(sop) Remove after Buck supports Eclipse
visibility = ['//tools/eclipse:classpath'],
)