This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
load("//ReactNative:DEFS.bzl", "rn_xplat_cxx_library", "react_native_xplat_target", "ANDROID_JSC_INTERNAL_DEPS", "APPLE_JSC_INTERNAL_DEPS") |
|
|
|
EXPORTED_HEADERS = [ |
|
"JavaScriptCore.h", |
|
"JSCHelpers.h", |
|
"JSCWrapper.h", |
|
"noncopyable.h", |
|
"Unicode.h", |
|
"Value.h", |
|
] |
|
|
|
rn_xplat_cxx_library( |
|
name = "jscinternalhelpers", |
|
srcs = glob( |
|
["*.cpp"], |
|
excludes = ["systemJSCWrapper.cpp"], |
|
), |
|
headers = glob( |
|
["*.h"], |
|
excludes = EXPORTED_HEADERS, |
|
), |
|
header_namespace = "", |
|
exported_headers = dict([ |
|
( |
|
"jschelpers/%s" % header, |
|
header, |
|
) |
|
for header in EXPORTED_HEADERS |
|
]), |
|
compiler_flags = [ |
|
"-Wall", |
|
"-fexceptions", |
|
"-frtti", |
|
"-fvisibility=hidden", |
|
"-std=c++1y", |
|
], |
|
exported_deps = [ |
|
react_native_xplat_target("privatedata:privatedata"), |
|
], |
|
fbandroid_deps = ANDROID_JSC_INTERNAL_DEPS, |
|
fbobjc_deps = APPLE_JSC_INTERNAL_DEPS, |
|
force_static = True, |
|
visibility = [ |
|
"PUBLIC", |
|
], |
|
deps = [ |
|
"xplat//folly:molly", |
|
"xplat//third-party/glog:glog", |
|
react_native_xplat_target("privatedata:privatedata"), |
|
], |
|
) |
|
|
|
rn_xplat_cxx_library( |
|
name = "jschelpers", |
|
srcs = [], |
|
compiler_flags = [ |
|
"-Wall", |
|
"-fexceptions", |
|
"-fvisibility=hidden", |
|
"-std=c++1y", |
|
], |
|
fbobjc_frameworks = [ |
|
"$SDKROOT/System/Library/Frameworks/JavaScriptCore.framework", |
|
], |
|
fbobjc_srcs = ["systemJSCWrapper.cpp"], |
|
force_static = True, |
|
visibility = [ |
|
"PUBLIC", |
|
], |
|
deps = [":jscinternalhelpers"], |
|
)
|
|
|