Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / widget / windows / tests / moz.build
blob2c7d2005713128c185bbe099eeda2ee9f370b63c
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 GeckoCppUnitTests(
8     [
9         "TestUriValidation",
10     ],
11     linkage=None,
14 DIRS = ["gtest"]
16 LOCAL_INCLUDES += []
18 OS_LIBS += [
19     "oleaut32",
20     "ole32",
21     "shell32",
22     "shlwapi",
23     "urlmon",
24     "uuid",
27 if CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CC_TYPE"] in ("gcc", "clang"):
28     # This allows us to use wmain as the entry point on mingw
29     LDFLAGS += [
30         "-municode",
31     ]
33 XPCSHELL_TESTS_MANIFESTS += ["unit/xpcshell.toml"]