From fdb8be72fc95394d5cac52421f86bd697f2502fc Mon Sep 17 00:00:00 2001 From: David Vacca Date: Mon, 29 Aug 2022 14:44:51 -0700 Subject: [PATCH] Avoid compiling subfolders of fabric folder Summary: Only compile files under Fabric folder, without including subfolders changelog: [internal] internal Reviewed By: lunaleaps Differential Revision: D39108916 fbshipit-source-id: 5390b78cd529e7256f4e755b6d88999546fa705b --- ReactAndroid/src/main/jni/react/fabric/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/jni/react/fabric/BUCK b/ReactAndroid/src/main/jni/react/fabric/BUCK index fd6e10a5447..c9315e08fb2 100644 --- a/ReactAndroid/src/main/jni/react/fabric/BUCK +++ b/ReactAndroid/src/main/jni/react/fabric/BUCK @@ -7,7 +7,7 @@ rn_xplat_cxx_library( header_namespace = "", exported_headers = subdir_glob( [ - ("", "**/*.h"), + ("", "*.h"), ], prefix = "react/fabric", ),