From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/wasm/moz.build | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 js/src/wasm/moz.build (limited to 'js/src/wasm/moz.build') diff --git a/js/src/wasm/moz.build b/js/src/wasm/moz.build new file mode 100644 index 0000000000..8aa23e3516 --- /dev/null +++ b/js/src/wasm/moz.build @@ -0,0 +1,67 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +FINAL_LIBRARY = "js" + +# Includes should be relative to parent path +LOCAL_INCLUDES += ["!..", ".."] + +include("../js-config.mozbuild") +include("../js-cxxflags.mozbuild") + +UNIFIED_SOURCES += [ + "AsmJS.cpp", + "WasmAnyRef.cpp", + "WasmBaselineCompile.cpp", + "WasmBCFrame.cpp", + "WasmBCMemory.cpp", + "WasmBinary.cpp", + "WasmBuiltinModule.cpp", + "WasmBuiltins.cpp", + "WasmCode.cpp", + "WasmCodegenTypes.cpp", + "WasmCompile.cpp", + "WasmDebug.cpp", + "WasmDebugFrame.cpp", + "WasmDump.cpp", + "WasmFeatures.cpp", + "WasmFrameIter.cpp", + "WasmGC.cpp", + "WasmGcObject.cpp", + "WasmGenerator.cpp", + "WasmInitExpr.cpp", + "WasmInstance.cpp", + "WasmIonCompile.cpp", + "WasmJS.cpp", + "WasmLog.cpp", + "WasmMemory.cpp", + "WasmModule.cpp", + "WasmModuleTypes.cpp", + "WasmOpIter.cpp", + "WasmProcess.cpp", + "WasmRealm.cpp", + "WasmSerialize.cpp", + "WasmSignalHandlers.cpp", + "WasmStubs.cpp", + "WasmSummarizeInsn.cpp", + "WasmTable.cpp", + "WasmTypeDef.cpp", + "WasmValidate.cpp", + "WasmValType.cpp", + "WasmValue.cpp", +] + +# Generate wasm/WasmBuiltinModuleGenerated.h from wasm/WasmBuiltinModule.yaml +GeneratedFile( + "WasmBuiltinModuleGenerated.h", + script="GenerateBuiltinModules.py", + inputs=["WasmBuiltinModule.yaml"], +) + +# Make sure all WebAssembly code is built with libfuzzer +# coverage instrumentation in FUZZING mode. +if CONFIG["FUZZING_INTERFACES"] and CONFIG["LIBFUZZER"]: + include("/tools/fuzzing/libfuzzer-config.mozbuild") -- cgit v1.2.3