mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
08ea434ba8
Summary: ## Changelog: [Internal] Pull Request resolved: https://github.com/facebook/react-native/pull/31400 Pull Request resolved: https://github.com/facebook/react-native/pull/31411 Annotate autolgob mode for apple library targets Reviewed By: adamjernst Differential Revision: D27890473 fbshipit-source-id: 75239c6c1871310e1ccd6576569161eb4163a3c1
19 lines
543 B
Python
19 lines
543 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "fb_apple_library")
|
|
|
|
fb_apple_library(
|
|
name = "FBLazyVector",
|
|
exported_headers = [
|
|
"FBLazyVector/FBLazyIterator.h",
|
|
"FBLazyVector/FBLazyVector.h",
|
|
],
|
|
autoglob = False,
|
|
complete_nullability = True,
|
|
contacts = ["oncall+react_native@xmail.facebook.com"],
|
|
enable_exceptions = False,
|
|
extension_api_only = True,
|
|
frameworks = [],
|
|
labels = ["supermodule:xplat/default/public.react_native.infra"],
|
|
link_whole = False,
|
|
visibility = ["PUBLIC"],
|
|
)
|