mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a885b1fcfd
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/34949 Changelog: [Internal] Currently, link groups depend on supermodules to generate. To continue supporting link groups while allowing us to migrate off supermodules, we'll add a talkios_link_group label on all talkios targets to persist the current hierarchical information. Reviewed By: jkeljo Differential Revision: D40268275 fbshipit-source-id: a82e969e7cb8ec167489be73dc9bc71cf8ec37e1
24 lines
755 B
Python
24 lines
755 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",
|
|
"talkios_link_group:xplat/default/public.react_native.infra",
|
|
],
|
|
link_whole = False,
|
|
visibility = ["PUBLIC"],
|
|
)
|