Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | SOURCES += [ |
michael@0 | 8 | 'tremor_block.c', |
michael@0 | 9 | 'tremor_codebook.c', |
michael@0 | 10 | 'tremor_floor0.c', |
michael@0 | 11 | 'tremor_floor1.c', |
michael@0 | 12 | 'tremor_info.c', |
michael@0 | 13 | 'tremor_mapping0.c', |
michael@0 | 14 | 'tremor_mdct.c', |
michael@0 | 15 | 'tremor_registry.c', |
michael@0 | 16 | 'tremor_res012.c', |
michael@0 | 17 | 'tremor_sharedbook.c', |
michael@0 | 18 | 'tremor_synthesis.c', |
michael@0 | 19 | 'tremor_window.c', |
michael@0 | 20 | ] |
michael@0 | 21 | |
michael@0 | 22 | FINAL_LIBRARY = 'gkmedias' |
michael@0 | 23 | |
michael@0 | 24 | if CONFIG['OS_ARCH'] == 'AIX': |
michael@0 | 25 | DEFINES['alloca'] = '__alloca' |
michael@0 | 26 | |
michael@0 | 27 | if CONFIG['TARGET_CPU'] == 'arm' and CONFIG['GNU_CC'] and not CONFIG['MOZ_THUMB2']: |
michael@0 | 28 | DEFINES['_ARM_ASSEM_'] = True |
michael@0 | 29 | |
michael@0 | 30 | LOCAL_INCLUDES += [ |
michael@0 | 31 | '/media/libtremor/include/tremor', |
michael@0 | 32 | ] |
michael@0 | 33 |