diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-11-03 20:02:33 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-11-03 20:02:33 -0500 |
commit | 65eac50e2dd9d2c4773a927aa7909eff13bc121c (patch) | |
tree | 408c5e8b06778972e0497eaffb605352afb10fee /js/src/gc | |
parent | 957f19d2bd52e193882e098a529dddc326e63a44 (diff) | |
download | uxp-65eac50e2dd9d2c4773a927aa7909eff13bc121c.tar.gz |
Issue #1676 - Part 10: Split gc sources out of js/src/moz.build
Diffstat (limited to 'js/src/gc')
-rw-r--r-- | js/src/gc/moz.build | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/gc/moz.build b/js/src/gc/moz.build new file mode 100644 index 0000000000..8f3188cf1f --- /dev/null +++ b/js/src/gc/moz.build @@ -0,0 +1,29 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +include('../js-config.mozbuild') +include('../js-cxxflags.mozbuild') + +FINAL_LIBRARY = "js" + +# Includes should be relative to parent path +LOCAL_INCLUDES += ["!..", ".."] + +SOURCES += [ + 'Allocator.cpp', + 'Barrier.cpp', + 'GCTrace.cpp', + 'Iteration.cpp', + 'Marking.cpp', + 'Memory.cpp', + 'MemoryProfiler.cpp', + 'Nursery.cpp', + 'RootMarking.cpp', + 'Statistics.cpp', + 'StoreBuffer.cpp', + 'Tracer.cpp', + 'Verifier.cpp', + 'Zone.cpp', +] |