015ce0a2f2
Move RequestUtil into its own package. This facilitates reuse of request attribute accessor methods by external libraries. Change-Id: Id002eb4f72827d65087a999adbd2ba9a58795fe2
21 lines
466 B
Python
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'],
|
|
)
|