Bug 1845355 - Add some asserts to detect causes of a crash r=glandium
[gecko.git] / memory / gtest / moz.build
blobf2a3e3f709cfafa72a45c4f13de3f8f2404deb6e
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 # skip the test on windows10-aarch64 due to perma-crash - bug 1544961
8 if CONFIG["OS_TARGET"] != "Android" and not (
9     CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CPU_ARCH"] == "aarch64"
11     UNIFIED_SOURCES += [
12         "TestJemalloc.cpp",
13     ]
15     if CONFIG["MOZ_PHC"]:
16         DEFINES["MOZ_PHC"] = True
18 FINAL_LIBRARY = "xul-gtest"
20 LOCAL_INCLUDES += [
21     "../build",