Files
react-native/Libraries/FBLazyVector/BUCK
T
Chenglin Liu 065db683a2 add link group label to fbios deps
Summary:
Currently, fbios link groups depend on supermodules to generate. To continue supporting
link groups while allowing us to migrate off supermodules, we'll add a `fbios_link_group` label on all fbios targets to persist the current hierarchical information.

Reviewed By: jkeljo

Differential Revision: D39543862

fbshipit-source-id: 2abe5b3ee883e77336076d88436a1c84139b5a97
2022-09-22 22:52:22 -07:00

23 lines
685 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 = [
"fbios_link_group:xplat/default/public.react_native.infra",
"pfh:ReactNative_CommonInfrastructurePlaceholder",
"supermodule:xplat/default/public.react_native.infra",
],
link_whole = False,
visibility = ["PUBLIC"],
)