Revision control
Copy as Markdown
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# Note that this builds the cdylib for our megazord. See the comments
# in megazords/full/moz.build.
UNIFIED_SOURCES += [
"megazord_stub.c",
]
# This name confusion is a reflection of some of the above. It should be
# fixed, but may be easier/better to fix once in m-c.
SharedLibrary("megazord-so")
SHARED_LIBRARY_NAME = "megazord"
USE_LIBS += ["megazord", "mozpkix", "nspr"]
# copy-pasta from other moz.build files, are these the correct checks?
if CONFIG["MOZ_WIDGET_TOOLKIT"] == "cocoa":
OS_LIBS += ["-framework CoreFoundation"]
elif CONFIG["OS_TARGET"] == "WINNT":
OS_LIBS += [
"advapi32",
"bcrypt",
"mswsock",
"ntdll",
"shell32",
"user32",
"userenv",
"wsock32",
"ws2_32",
"winmm",
]