mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1a7682b2a1
Reviewed By: yfeldblum Differential Revision: D8073585 fbshipit-source-id: 12322aebc09b89d5af9cc257b16c1bc0fbb066c1
40 lines
2.4 KiB
Python
40 lines
2.4 KiB
Python
load("//ReactNative:DEFS.bzl", "react_native_dep", "react_native_integration_tests_target", "react_native_target", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "tests",
|
|
srcs = glob(["**/*.java"]),
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("third-party/android/support/v4:lib-support-v4"),
|
|
react_native_dep("third-party/java/jsr-305:jsr-305"),
|
|
react_native_dep("third-party/java/junit:junit"),
|
|
react_native_integration_tests_target("java/com/facebook/react/testing:testing"),
|
|
react_native_integration_tests_target("java/com/facebook/react/testing/idledetection:idledetection"),
|
|
react_native_target("java/com/facebook/react:react"),
|
|
react_native_target("java/com/facebook/react/bridge:bridge"),
|
|
react_native_target("java/com/facebook/react/common:common"),
|
|
react_native_target("java/com/facebook/react/module/annotations:annotations"),
|
|
react_native_target("java/com/facebook/react/modules/appstate:appstate"),
|
|
react_native_target("java/com/facebook/react/modules/core:core"),
|
|
react_native_target("java/com/facebook/react/modules/datepicker:datepicker"),
|
|
react_native_target("java/com/facebook/react/modules/deviceinfo:deviceinfo"),
|
|
react_native_target("java/com/facebook/react/modules/share:share"),
|
|
react_native_target("java/com/facebook/react/modules/systeminfo:systeminfo"),
|
|
react_native_target("java/com/facebook/react/modules/timepicker:timepicker"),
|
|
react_native_target("java/com/facebook/react/touch:touch"),
|
|
react_native_target("java/com/facebook/react/uimanager:uimanager"),
|
|
react_native_target("java/com/facebook/react/uimanager/annotations:annotations"),
|
|
react_native_target("java/com/facebook/react/uimanager/util:util"),
|
|
react_native_target("java/com/facebook/react/views/picker:picker"),
|
|
react_native_target("java/com/facebook/react/views/progressbar:progressbar"),
|
|
react_native_target("java/com/facebook/react/views/scroll:scroll"),
|
|
react_native_target("java/com/facebook/react/views/slider:slider"),
|
|
react_native_target("java/com/facebook/react/views/swiperefresh:swiperefresh"),
|
|
react_native_target("java/com/facebook/react/views/text:text"),
|
|
react_native_target("java/com/facebook/react/views/textinput:textinput"),
|
|
react_native_target("java/com/facebook/react/views/view:view"),
|
|
],
|
|
)
|