mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Differential Revision: D40610875 fbshipit-source-id: 0fb0db845c041265faf0a06877d05ffbb55ba648
28 lines
742 B
Python
28 lines
742 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "react_native_dep", "react_native_target", "rn_android_library")
|
|
|
|
oncall("react_native")
|
|
|
|
rn_android_library(
|
|
name = "reactperflogger",
|
|
srcs = glob(
|
|
[
|
|
"*.java",
|
|
],
|
|
),
|
|
autoglob = False,
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
"supermodule:xplat/default/public.react_native.infra",
|
|
],
|
|
language = "JAVA",
|
|
required_for_source_only_abi = True,
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
react_native_dep("libraries/soloader/java/com/facebook/soloader:soloader"),
|
|
react_native_dep("libraries/fbjni:java"),
|
|
react_native_target("jni/react/reactperflogger:jni"),
|
|
],
|
|
)
|