no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / security / manager / ssl / ipcclientcerts / dynamic-library / moz.build
blob3db25ac3bd3f2a636b12fd2eb101db7748857623
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 += ["ipcclientcerts-static"]
9 # On Linux (but not when building for Android), this needs to use the C++
10 # version to avoid linking against the wrong libc symbols.
11 # On Android, this needs to use the C version to avoid multiple definitions
12 # of symbols caused by their presence in libgcc and ipcclientcerts-static.
13 if CONFIG["OS_ARCH"] == "Linux" and CONFIG["OS_TARGET"] != "Android":
14     SOURCES += [
15         "stub.cpp",
16     ]
17 else:
18     SOURCES += [
19         "stub.c",
20     ]
22 OS_LIBS += CONFIG["DL_LIBS"]
24 if CONFIG["OS_TARGET"] == "Android":
25     OS_LIBS += ["m"]
27 if CONFIG["OS_ARCH"] == "WINNT":
28     OS_LIBS += [
29         "advapi32",
30         "userenv",
31         "ws2_32",
32     ]
33     OS_LIBS += [
34         "bcrypt",
35         "ntdll",
36     ]
37     # Version string comparison is generally wrong, but by the time it would
38     # actually matter, either bug 1489995 would be fixed, or the build would
39     # require version >= 1.78.
40     if CONFIG["RUSTC_VERSION"] and CONFIG["RUSTC_VERSION"] >= "1.78.0":
41         OS_LIBS += [
42             "synchronization",
43         ]
45 SharedLibrary("ipcclientcerts")
47 NoVisibilityFlags()
48 SYMBOLS_FILE = "ipcclientcerts.symbols"