# 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 # file, You can obtain one at http://mozilla.org/MPL/2.0/. FINAL_TARGET = "_tests/xpcshell/security/manager/ssl/tests/unit/pkcs11testmodule" USE_LIBS += ["pkcs11testmodule-static"] # On Linux (but not when building for Android), this needs to use the C++ # version to avoid linking against the wrong libc symbols. # On Android, this needs to use the C version to avoid multiple definitions # of symbols caused by their presence in libgcc and pkcs11testmodule-static. if CONFIG["OS_ARCH"] == "Linux" and CONFIG["OS_TARGET"] != "Android": SOURCES += [ "stub.cpp", ] else: SOURCES += [ "stub.c", ] if CONFIG["OS_TARGET"] == "Android": OS_LIBS += ["m"] if CONFIG["OS_ARCH"] == "WINNT": OS_LIBS += [ "advapi32", "bcrypt", "ntdll", "synchronization", "userenv", "ws2_32", ] SharedLibrary("pkcs11testmodule") NoVisibilityFlags() SYMBOLS_FILE = "pkcs11testmodule.symbols"