mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-11 09:11:14 +08:00
Reviewed By: mkonicek Differential Revision: D2849743 fb-gh-sync-id: 7d0ae9a2fcfda8c017b60af3e8fe7fa4029ab6ea
33 lines
719 B
Python
33 lines
719 B
Python
android_library(
|
|
name = 'fest',
|
|
exported_deps = [
|
|
':fest-core',
|
|
':fest-util',
|
|
],
|
|
visibility = ['//ReactAndroid/...',],
|
|
)
|
|
|
|
prebuilt_jar(
|
|
name = 'fest-core',
|
|
binary_jar = ':fest-binary-jar',
|
|
visibility = ['//ReactAndroid/...',],
|
|
)
|
|
|
|
remote_file(
|
|
name = 'fest-binary-jar',
|
|
url = 'mvn:org.easytesting:fest-assert-core:jar:2.0M10',
|
|
sha1 = 'cb7c91cf614901928ae405f19d9bcdedf82781db',
|
|
)
|
|
|
|
prebuilt_jar(
|
|
name = 'fest-util',
|
|
binary_jar = ':fest-util-binary-jar',
|
|
visibility = ['//ReactAndroid/...',],
|
|
)
|
|
|
|
remote_file(
|
|
name = 'fest-util-binary-jar',
|
|
url = 'mvn:org.easytesting:fest-util:jar:1.2.5',
|
|
sha1 = 'c4a8d7305b23b8d043be12c979813b096df11f44',
|
|
)
|