Skip to content
Snippets Groups Projects
Commit 3b332113 authored by Mike Hommey's avatar Mike Hommey
Browse files

Bug 1802675 - Don't build winheap.cpp when mozglue is a static library....

Bug 1802675 - Don't build winheap.cpp when mozglue is a static library. r=firefox-build-system-reviewers,andi

Differential Revision: https://phabricator.services.mozilla.com/D163383
parent 1ff5f4f2
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,12 @@ if CONFIG["WRAP_STL_INCLUDES"]:
]
if CONFIG["OS_TARGET"] == "WINNT":
# Keep this file separate to avoid #include'ing windows.h everywhere.
SOURCES += [
"winheap.cpp",
]
# Don't build winheap.cpp when mozglue is a static library.
if CONFIG["MOZ_MEMORY"] or not CONFIG["JS_STANDALONE"]:
# Keep this file separate to avoid #include'ing windows.h everywhere.
SOURCES += [
"winheap.cpp",
]
UNIFIED_SOURCES += [
"mozalloc.cpp",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment