Bug 1932347 - Adjust positioning of tab preview for vertical tabs r=tabbrowser-review...
[gecko.git] / security / manager / ssl / tests / unit / test_builtins / dynamic-library / moz.build
blob439d0c556929d84a0ee3e608eda781c63a3a5999
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 FINAL_TARGET = "_tests/xpcshell/security/manager/ssl/tests/unit/test_builtins"
9 USE_LIBS += ["test-builtins-static"]
11 # see notes in ipcclientcerts/dynamic-library/moz.build
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 if CONFIG["OS_TARGET"] == "Android":
23     OS_LIBS += ["m"]
25 if CONFIG["OS_ARCH"] == "WINNT":
26     OS_LIBS += [
27         "advapi32",
28         "userenv",
29         "ws2_32",
30     ]
31     OS_LIBS += [
32         "bcrypt",
33         "ntdll",
34     ]
35     # Version string comparison is generally wrong, but by the time it would
36     # actually matter, either bug 1489995 would be fixed, or the build would
37     # require version >= 1.78.
38     if CONFIG["RUSTC_VERSION"] and CONFIG["RUSTC_VERSION"] >= "1.78.0":
39         OS_LIBS += [
40             "synchronization",
41         ]
43 SharedLibrary("test_builtins")
45 NoVisibilityFlags()
46 SYMBOLS_FILE = "builtins.symbols"