# 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/test_trust_anchors" USE_LIBS += ["test-trust-anchors-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 trust-anchors-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("test_trust_anchors") NoVisibilityFlags() SYMBOLS_FILE = "trust-anchors.symbols"