From 916170f6ac562218d901631bb53f057131f00bac Mon Sep 17 00:00:00 2001 From: Emil Sjolander Date: Fri, 12 Aug 2016 03:48:20 -0700 Subject: [PATCH] Dont generate so for main library Summary: A .so file is only needed for the JNI target. The main library can be static. Differential Revision: D3703897 fbshipit-source-id: b2efb98a6ae4488e6107c736c263cad35ef7c4fe --- BUCK | 1 + 1 file changed, 1 insertion(+) diff --git a/BUCK b/BUCK index d85dffea..009a0ab9 100644 --- a/BUCK +++ b/BUCK @@ -29,6 +29,7 @@ cxx_library( tests=[':CSSLayout_tests'], exported_headers = subdir_glob([('', 'CSSLayout/*.h')]), header_namespace = '', + force_static = True, compiler_flags = COMPILER_FLAGS, deps = [], visibility = ['PUBLIC'],