From b6c71ae58bd42053997cff270e0765cf28815528 Mon Sep 17 00:00:00 2001 From: Richard Howell Date: Tue, 16 Nov 2021 09:06:30 -0800 Subject: [PATCH] disable submodules when exporting non-modular deps for ig deps Summary: This diff disables submodules for dependencies of IG that are not `ig_apple_library` and are exporting non-modular dependencies. This will allow for migration to using submodules as a default. The list of targets was obtained with: ``` % buck query 'kind(apple_library, attrfilter(labels, skip_module_validation, deps(igios)) - attrfilter(labels, ig_apple_library, deps(igios)))' ``` Reviewed By: ebgraham Differential Revision: D32399636 fbshipit-source-id: f3ba55def8001e8595fe3b1611d2de8ec38c8622 --- YogaKit/BUCK | 1 + 1 file changed, 1 insertion(+) diff --git a/YogaKit/BUCK b/YogaKit/BUCK index 4fe6b003..6ca5401e 100644 --- a/YogaKit/BUCK +++ b/YogaKit/BUCK @@ -46,6 +46,7 @@ yoga_apple_library( link_whole = True, modular = True, module_name = "YogaKit", + use_submodules = False, visibility = ["PUBLIC"], deps = [ yoga_dep(":yoga"),