mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
22ddab2025
Summary: Since we are now using ReactFeatureFlag from C++, we need to ensure redex doesn't strip its fields. changelog: [internal] internal Reviewed By: JoshuaGross Differential Revision: D28360678 fbshipit-source-id: 74604e2d008a056c161d8b6ab8f5b30807087d9e
15 lines
397 B
Python
15 lines
397 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "rn_android_library")
|
|
|
|
rn_android_library(
|
|
name = "config",
|
|
srcs = glob(["**/*.java"]),
|
|
autoglob = False,
|
|
labels = ["supermodule:xplat/default/public.react_native.infra"],
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("java/com/facebook/proguard/annotations:annotations"),
|
|
],
|
|
)
|