Reformat BUCK files

Reviewed By: zertosh

Differential Revision: D5756296

fbshipit-source-id: 69af6e9211648a81ba864be8d37165023cb5f9c2
This commit is contained in:
Michael Lee 2017-09-05 14:59:14 -07:00 committed by Facebook Github Bot
parent 1ccc03c217
commit ed31f7a97d
3 changed files with 13 additions and 13 deletions

View File

@ -12,9 +12,9 @@ cxx_library(
"//instrumentation_tests/com/facebook/react/...",
],
deps = [
"xplat//folly:molly",
"//native:base",
"//native/fb:fb",
"xplat//folly:molly",
react_native_xplat_target("cxxreact:module"),
],
)

View File

@ -67,8 +67,8 @@ rn_xplat_cxx_library(
"PUBLIC",
],
deps = [
":module",
"xplat//folly:molly",
":module",
],
)

View File

@ -16,12 +16,11 @@ rn_xplat_cxx_library(
["*.cpp"],
excludes = ["systemJSCWrapper.cpp"],
),
compiler_flags = [
"-Wall",
"-fexceptions",
"-fvisibility=hidden",
"-std=c++1y",
],
headers = glob(
["*.h"],
excludes = EXPORTED_HEADERS,
),
header_namespace = "",
exported_headers = dict([
(
"jschelpers/%s" % header,
@ -29,13 +28,14 @@ rn_xplat_cxx_library(
)
for header in EXPORTED_HEADERS
]),
compiler_flags = [
"-Wall",
"-fexceptions",
"-fvisibility=hidden",
"-std=c++1y",
],
fbobjc_inherited_buck_flags = STATIC_LIBRARY_IOS_FLAGS,
force_static = True,
header_namespace = "",
headers = glob(
["*.h"],
excludes = EXPORTED_HEADERS,
),
visibility = [
"PUBLIC",
],