Skip to content

Commit 08ea434

Browse files
Adam Cmielfacebook-github-bot
Adam Cmiel
authored andcommittedApr 28, 2021
Migrate xplat autoglob targets (facebook#31400)
Summary: ## Changelog: [Internal] Pull Request resolved: facebook#31400 Pull Request resolved: facebook#31411 Annotate autolgob mode for apple library targets Reviewed By: adamjernst Differential Revision: D27890473 fbshipit-source-id: 75239c6c1871310e1ccd6576569161eb4163a3c1
1 parent 050f84f commit 08ea434

File tree

2 files changed

+9
-2
lines changed
  • Libraries

2 files changed

+9
-2
lines changed
 

‎Libraries/FBLazyVector/BUCK

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ load("//tools/build_defs/oss:rn_defs.bzl", "fb_apple_library")
22

33
fb_apple_library(
44
name = "FBLazyVector",
5-
autoglob = True,
5+
exported_headers = [
6+
"FBLazyVector/FBLazyIterator.h",
7+
"FBLazyVector/FBLazyVector.h",
8+
],
9+
autoglob = False,
610
complete_nullability = True,
711
contacts = ["oncall+react_native@xmail.facebook.com"],
812
enable_exceptions = False,

‎Libraries/RCTRequired/BUCK

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ load("//tools/build_defs/oss:rn_defs.bzl", "fb_apple_library")
22

33
fb_apple_library(
44
name = "RCTRequired",
5-
autoglob = True,
5+
exported_headers = [
6+
"RCTRequired/RCTRequired.h",
7+
],
8+
autoglob = False,
69
complete_nullability = True,
710
contacts = ["oncall+react_native@xmail.facebook.com"],
811
extension_api_only = True,

0 commit comments

Comments
 (0)
Please sign in to comment.