58 lines
1.2 KiB
Python
58 lines
1.2 KiB
Python
EXPORTED_HEADERS = [
|
|
'JavaScriptCore.h',
|
|
'JSCHelpers.h',
|
|
'JSCWrapper.h',
|
|
'noncopyable.h',
|
|
'Unicode.h',
|
|
'Value.h',
|
|
]
|
|
|
|
if THIS_IS_FBANDROID:
|
|
include_defs('//ReactAndroid/DEFS')
|
|
|
|
cxx_library(
|
|
name = 'jschelpers',
|
|
force_static = True,
|
|
compiler_flags = [
|
|
'-Wall',
|
|
'-fexceptions',
|
|
'-fvisibility=hidden',
|
|
'-std=c++1y',
|
|
],
|
|
exported_headers = EXPORTED_HEADERS,
|
|
headers = glob(['*.h'], excludes=EXPORTED_HEADERS),
|
|
header_namespace = 'jschelpers',
|
|
srcs = glob(['*.cpp']),
|
|
deps = JSC_DEPS + [
|
|
'//xplat/folly:molly',
|
|
],
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|
|
|
|
elif THIS_IS_FBOBJC:
|
|
ios_library(
|
|
name = 'jschelpers',
|
|
inherited_buck_flags = STATIC_LIBRARY_IOS_FLAGS,
|
|
compiler_flags = [
|
|
'-Wall',
|
|
'-fexceptions',
|
|
'-fvisibility=hidden',
|
|
'-std=c++1y',
|
|
],
|
|
exported_headers = EXPORTED_HEADERS,
|
|
headers = glob(['*.h'], excludes=EXPORTED_HEADERS),
|
|
header_namespace = 'jschelpers',
|
|
srcs = glob(['*.cpp']),
|
|
frameworks = [
|
|
'$SDKROOT/System/Library/Frameworks/JavaScriptCore.framework',
|
|
],
|
|
deps = [
|
|
'//xplat/folly:molly',
|
|
],
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|