From 98295bf8665a17433e9245f3cade8ec28c7563c3 Mon Sep 17 00:00:00 2001 From: Hector Ramos Date: Mon, 22 Jan 2018 11:39:33 -0800 Subject: [PATCH] Add back kwargs --- ReactNative/DEFS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactNative/DEFS b/ReactNative/DEFS index 2685a8b99591e5..6e662cd4d38f62 100644 --- a/ReactNative/DEFS +++ b/ReactNative/DEFS @@ -30,7 +30,7 @@ with allow_unsafe_import(): # Building is not supported in OSS right now def rn_xplat_cxx_library(name, **kwargs): - cxx_library(name = name) + cxx_library(name = name, **kwargs) # Example: react_native_target('java/com/facebook/react/common:common') def react_native_target(path):