Files
react-native/ReactAndroid/src/main/third-party/java/junit/BUCK
Michael Lee 55f0294b7d clean up buck dep order
Reviewed By: adamjernst

Differential Revision: D4404770

fbshipit-source-id: d5801cc2b529f513e1531840310b884af951d702
2017-01-11 14:43:31 -08:00

35 lines
684 B
Python

include_defs('//ReactAndroid/DEFS')
android_library(
name = 'junit',
exported_deps = [
':hamcrest',
':junit-core',
],
visibility = ['//ReactAndroid/...',],
)
prebuilt_jar(
name = 'junit-core',
binary_jar = ':download-junit',
visibility = ['//ReactAndroid/...',],
)
remote_file(
name = 'download-junit',
url = 'mvn:junit:junit:jar:4.12',
sha1 = '2973d150c0dc1fefe998f834810d68f278ea58ec',
)
prebuilt_jar(
name = 'hamcrest',
binary_jar = ':download-hamcrest',
visibility = ['//ReactAndroid/...',],
)
remote_file(
name = 'download-hamcrest',
url = 'mvn:org.hamcrest:hamcrest-all:jar:1.3',
sha1 = '63a21ebc981131004ad02e0434e799fd7f3a8d5a',
)