mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-09 17:31:39 +08:00
Summary:
Found a couple of places where we were copy-pasting the logic `ResourceDrawableIdHelper` had. This class was only available on the image module and it had package visibility. I moved it to its own module so that we can easily use it from others.
This diff is pretty simillar to 54ed44628d but it fixes a bug due to which we had to revert it.
Reviewed By: andreicoman11
Differential Revision: D3499062
fbshipit-source-id: f912f57e5ac21a9f30fe42067c784f49fa46ed48
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
include_defs('//ReactAndroid/DEFS')
|
|
|
|
DEPS = [
|
|
react_native_target('java/com/facebook/react/cxxbridge:bridge'),
|
|
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/devsupport:devsupport'),
|
|
react_native_target('java/com/facebook/react/modules/core:core'),
|
|
react_native_target('java/com/facebook/react/modules/debug:debug'),
|
|
react_native_target('java/com/facebook/react/modules/systeminfo:systeminfo'),
|
|
react_native_target('java/com/facebook/react/modules/toast:toast'),
|
|
react_native_target('java/com/facebook/react/views/imagehelper:imagehelper'),
|
|
react_native_target('java/com/facebook/react/uimanager:uimanager'),
|
|
react_native_dep('java/com/facebook/systrace:systrace'),
|
|
react_native_dep('libraries/fbcore/src/main/java/com/facebook/common/logging:logging'),
|
|
react_native_dep('libraries/soloader/java/com/facebook/soloader:soloader'),
|
|
react_native_dep('third-party/java/infer-annotations:infer-annotations'),
|
|
react_native_dep('third-party/java/jsr-305:jsr-305'),
|
|
]
|
|
|
|
android_library(
|
|
name = 'react',
|
|
srcs = glob(['*.java']),
|
|
deps = DEPS,
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|
|
|
|
project_config(
|
|
src_target = ':react',
|
|
)
|