moz.build (995B)
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/. 6 7 UNIFIED_SOURCES += [ 8 "Biquad.cpp", 9 "DynamicsCompressor.cpp", 10 "DynamicsCompressorKernel.cpp", 11 "FFTConvolver.cpp", 12 "HRTFDatabase.cpp", 13 "HRTFDatabaseLoader.cpp", 14 "HRTFElevation.cpp", 15 "HRTFKernel.cpp", 16 "HRTFPanner.cpp", 17 "IIRFilter.cpp", 18 "PeriodicWave.cpp", 19 "Reverb.cpp", 20 "ReverbAccumulationBuffer.cpp", 21 "ReverbConvolver.cpp", 22 "ReverbConvolverStage.cpp", 23 "ReverbInputBuffer.cpp", 24 "ZeroPole.cpp", 25 ] 26 27 # Are we targeting x86 or x64? If so, build SSE2 files. 28 if CONFIG["INTEL_ARCHITECTURE"]: 29 DEFINES["USE_SSE2"] = True 30 31 include("/ipc/chromium/chromium-config.mozbuild") 32 33 FINAL_LIBRARY = "xul" 34 LOCAL_INCLUDES += [ 35 "/dom/media/webaudio", 36 ]