content/media/webaudio/blink/moz.build

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     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/.
     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 ]
    27 include('/ipc/chromium/chromium-config.mozbuild')
    29 FINAL_LIBRARY = 'gklayout'
    30 LOCAL_INCLUDES += [
    31     '/content/media/webaudio',
    32 ]

mercurial