diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 14:38:12 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 14:38:12 -0500 |
commit | ff355fe9ac5327a62cdbd05f99dff9febe5de5df (patch) | |
tree | 4d6bd33c143cc584b9f0b4b9f11d482303e8a8fd | |
parent | 1abc696f87d175ab967e0e86fdf375255c43e98d (diff) | |
download | uxp-ff355fe9ac5327a62cdbd05f99dff9febe5de5df.tar.gz |
Issue #1676 - Part 17: Put remaining source files which have debug code ifdef'd behind MOZ_DEBUG
-rw-r--r-- | js/src/gc/moz.build | 4 | ||||
-rw-r--r-- | js/src/jit/moz.build | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/js/src/gc/moz.build b/js/src/gc/moz.build index 8f3188cf1f..d33dfb0079 100644 --- a/js/src/gc/moz.build +++ b/js/src/gc/moz.build @@ -24,6 +24,8 @@ SOURCES += [ 'Statistics.cpp', 'StoreBuffer.cpp', 'Tracer.cpp', - 'Verifier.cpp', 'Zone.cpp', ] + +if CONFIG['MOZ_DEBUG']: + SOURCES += ['Verifier.cpp'] diff --git a/js/src/jit/moz.build b/js/src/jit/moz.build index bcd9b7dbf5..0c6c4f3b8c 100644 --- a/js/src/jit/moz.build +++ b/js/src/jit/moz.build @@ -32,7 +32,6 @@ SOURCES += [ 'CacheIR.cpp', 'CodeGenerator.cpp', 'CompileWrappers.cpp', - 'Disassembler.cpp', 'EagerSimdUnbox.cpp', 'EdgeCaseAnalysis.cpp', 'EffectiveAddressAnalysis.cpp', @@ -83,6 +82,9 @@ SOURCES += [ 'WasmBCE.cpp', ] +if CONFIG['MOZ_DEBUG']: + SOURCES += ['Disassembler.cpp'] + if not CONFIG['ENABLE_ION']: SOURCES += [ 'none/Trampoline-none.cpp' |