mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-07 13:05:18 +08:00
Reviewed By: adamjernst Differential Revision: D4404770 fbshipit-source-id: d5801cc2b529f513e1531840310b884af951d702
35 lines
684 B
Python
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',
|
|
)
|