Backed out changeset 49b6d8b426ba (bug 1944170) on request for causing Bug 1944433...
[gecko.git] / security / manager / ssl / builtins / dynamic-library / moz.build
blobcf06de75a2f920d51d250bd6f108c62d30e2fb76
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 USE_LIBS += ["builtins-static"]
9 # see notes in ipcclientcerts/dynamic-library/moz.build
11 if CONFIG["OS_ARCH"] == "Linux" and CONFIG["OS_TARGET"] != "Android":
12     SOURCES += [
13         "stub.cpp",
14     ]
15 else:
16     SOURCES += [
17         "stub.c",
18     ]
20 if CONFIG["OS_TARGET"] == "Android":
21     OS_LIBS += ["m"]
23 if CONFIG["OS_ARCH"] == "WINNT":
24     OS_LIBS += [
25         "advapi32",
26         "userenv",
27         "ws2_32",
28     ]
29     OS_LIBS += [
30         "bcrypt",
31         "ntdll",
32     ]
33     # Version string comparison is generally wrong, but by the time it would
34     # actually matter, either bug 1489995 would be fixed, or the build would
35     # require version >= 1.78.
36     if CONFIG["RUSTC_VERSION"] and CONFIG["RUSTC_VERSION"] >= "1.78.0":
37         OS_LIBS += [
38             "synchronization",
39         ]
41 SharedLibrary("nssckbi")
43 NoVisibilityFlags()
44 SYMBOLS_FILE = "builtins.symbols"