Add back kwargs

Summary:
Originally added in #17551 by dryganets but lost when an internal diff consolidated files into ReactNative/DEFS
Closes https://github.com/facebook/react-native/pull/17710

Differential Revision: D6778242

Pulled By: hramos

fbshipit-source-id: 22bd3348feccf1ecb53d897c84e1ca704e51fc33
This commit is contained in:
Héctor Ramos 2018-01-22 14:40:17 -08:00 committed by Facebook Github Bot
parent b8c86b8dec
commit f5975a97ad
1 changed files with 1 additions and 1 deletions

View File

@ -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):