|
1 # -*- Mode: python; c-basic-offset: 4; 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 'DirectConvolver.cpp', |
|
10 'DynamicsCompressor.cpp', |
|
11 'DynamicsCompressorKernel.cpp', |
|
12 'FFTConvolver.cpp', |
|
13 'HRTFDatabase.cpp', |
|
14 'HRTFDatabaseLoader.cpp', |
|
15 'HRTFElevation.cpp', |
|
16 'HRTFKernel.cpp', |
|
17 'HRTFPanner.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 include('/ipc/chromium/chromium-config.mozbuild') |
|
28 |
|
29 FINAL_LIBRARY = 'gklayout' |
|
30 LOCAL_INCLUDES += [ |
|
31 '/content/media/webaudio', |
|
32 ] |
|
33 |