summaryrefslogtreecommitdiffstats
path: root/media/libvpx/moz.build
blob: 635b5d0fdd678505c93a4629e06527da7cfcb560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# -*- 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/.

with Files('*'):
    BUG_COMPONENT = ('Core', 'Audio/Video')

include('sources.mozbuild')

if CONFIG['VPX_USE_NASM']:
    USE_NASM = True

# Linux, Mac and Win share file lists for x86* but not configurations.
if CONFIG['TARGET_CPU'] == 'x86_64':
    EXPORTS.vpx += files['X64_EXPORTS']
    SOURCES += files['X64_SOURCES']
    if CONFIG['OS_TARGET'] == 'WINNT':
        ASFLAGS += [ '-I%s/media/libvpx/config/win/x64/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/win/x64/' ]
        SOURCES += [ '/media/libvpx/config/win/x64/vpx_config.c' ]
    elif CONFIG['OS_TARGET'] == 'Darwin':
        ASFLAGS += [ '-I%s/media/libvpx/config/mac/x64/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/mac/x64/' ]
        SOURCES += [ '/media/libvpx/config/mac/x64/vpx_config.c' ]
    else: # Android, Linux, BSDs, etc.
        ASFLAGS += [ '-I%s/media/libvpx/config/linux/x64/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/linux/x64/' ]
        SOURCES += [ '/media/libvpx/config/linux/x64/vpx_config.c' ]
elif CONFIG['TARGET_CPU'] == 'x86':
    EXPORTS.vpx += files['IA32_EXPORTS']
    SOURCES += files['IA32_SOURCES']
    if CONFIG['OS_TARGET'] == 'WINNT':
        ASFLAGS += [ '-I%s/media/libvpx/config/win/ia32/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/win/ia32/' ]
        SOURCES += [ '/media/libvpx/config/win/ia32/vpx_config.c' ]
    elif CONFIG['OS_TARGET'] == 'Darwin':
        ASFLAGS += [ '-I%s/media/libvpx/config/mac/ia32/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/mac/ia32/' ]
        SOURCES += [ '/media/libvpx/config/mac/ia32/vpx_config.c' ]
    else: # Android, Linux, BSDs, etc.
        ASFLAGS += [ '-I%s/media/libvpx/config/linux/ia32/' % TOPSRCDIR ]
        LOCAL_INCLUDES += [ '/media/libvpx/config/linux/ia32/' ]
        SOURCES += [ '/media/libvpx/config/linux/ia32/vpx_config.c' ]
elif CONFIG['TARGET_CPU'] == 'arm':
    EXPORTS.vpx += files['ARM_EXPORTS']
    ASFLAGS += [
        '-I%s/media/libvpx/config/linux/arm/' % TOPSRCDIR,
        '-I%s/libvpx' % OBJDIR,
    ]
    LOCAL_INCLUDES += [ '/media/libvpx/config/linux/arm/' ]
    SOURCES += [ '/media/libvpx/config/linux/arm/vpx_config.c' ]

    arm_asm_files = files['ARM_SOURCES']

    if CONFIG['GNU_AS']:
        SOURCES += sorted([
            "!%s.S" % f if f.endswith('.asm') else f for f in arm_asm_files
        ])
    else:
        SOURCES += sorted(arm_asm_files)

    for f in SOURCES:
        if f.endswith('.c') and 'neon' in f:
            SOURCES[f].flags += CONFIG['VPX_ASFLAGS']

    if CONFIG['OS_TARGET'] == 'Android':
        # For cpu-features.h
        LOCAL_INCLUDES += [
            '%%%s/sources/android/cpufeatures' % CONFIG['ANDROID_NDK'],
        ]
elif CONFIG['TARGET_CPU'] == 'aarch64' and CONFIG['OS_TARGET'] == 'WINNT':
    EXPORTS.vpx += files['ARM64_EXPORTS']
    # Bug 1885585: clang on win/aarch64 cannot compile SVInt8_t type for now.
    SOURCES += [
            f for f in files['ARM64_SOURCES'] if not f.endswith('_sve.c')
        ]
    ASFLAGS += [ '-I%s/media/libvpx/config/win/aarch64/' % TOPSRCDIR ]
    LOCAL_INCLUDES += [ '/media/libvpx/config/win/aarch64/' ]
    SOURCES += [ '/media/libvpx/config/win/aarch64/vpx_config.c' ]
elif CONFIG['TARGET_CPU'] == 'aarch64':
    EXPORTS.vpx += files['ARM64_EXPORTS']
    SOURCES += files['ARM64_SOURCES']
    ASFLAGS += [ '-I%s/media/libvpx/config/linux/arm64/' % TOPSRCDIR ]
    LOCAL_INCLUDES += [ '/media/libvpx/config/linux/arm64/' ]
    SOURCES += [ '/media/libvpx/config/linux/arm64/vpx_config.c' ]
else:
    # Generic C-only configuration
    EXPORTS.vpx += files['GENERIC_EXPORTS']
    SOURCES += files['GENERIC_SOURCES']
    ASFLAGS += [ '-I%s/media/libvpx/config/generic/' % TOPSRCDIR ]
    LOCAL_INCLUDES += [ '/media/libvpx/config/generic/' ]
    SOURCES += [ '/media/libvpx/config/generic/vpx_config.c' ]

# We allow warnings for third-party code that can be updated from upstream.
AllowCompilerWarnings()

FINAL_LIBRARY = 'gkcodecs'
NoVisibilityFlags()

DEFINES['HAVE_CONFIG_H'] = 'vpx_config.h'

if CONFIG['OS_TARGET'] == 'Android':
    # Older versions of the Android NDK don't pre-define anything to indicate
    # the OS they're on, so do it for them.
    DEFINES['__linux__'] = True

    SOURCES += [
        '%%%s/sources/android/cpufeatures/cpu-features.c' % CONFIG['ANDROID_NDK'],
    ]

for f in SOURCES:
    if f.endswith('.c'):
        if 'mmx.c' in f:
            SOURCES[f].flags += ['-mmmx']
        if 'sse2.c' in f:
            SOURCES[f].flags += CONFIG['SSE2_FLAGS']
        if 'ssse3.c' in f:
            SOURCES[f].flags += ['-mssse3']
        if 'sse4.c' in f:
            SOURCES[f].flags += ['-msse4.1']
        if 'avx.c' in f:
            SOURCES[f].flags += ['-mavx']
        if 'avx2.c' in f:
            SOURCES[f].flags += ['-mavx2']
        if 'neon_dotprod.c' in f:
            SOURCES[f].flags += ['-march=armv8.2-a+dotprod']
        if 'neon_i8mm.c' in f:
            SOURCES[f].flags += ['-march=armv8.2-a+dotprod+i8mm']
        if 'sve.c' in f:
            SOURCES[f].flags += ['-march=armv8.2-a+dotprod+i8mm+sve']
        if 'sve2.c' in f:
            SOURCES[f].flags += ['-march=armv9-a+sve2']

# Suppress warnings in third-party code.
CFLAGS += [
    '-Wno-sign-compare',
    '-Wno-unused-function', # so many of these warnings; just ignore them
]
if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'):
    CFLAGS += [
        '-Wno-unreachable-code',
        '-Wno-unneeded-internal-declaration',
    ]

ASFLAGS += CONFIG['VPX_ASFLAGS']
ASFLAGS += [
    '-I./',
    '-I%s/media/libvpx/libvpx/' % TOPSRCDIR,
]

LOCAL_INCLUDES += [
    '/media/libvpx/config', # vpx_version.h
    '/media/libvpx/libvpx',
]

if CONFIG['OS_TARGET'] == 'Android':
    # For LIBVPX_RAND
    ASFLAGS += [
        '-D__ANDROID__'
    ]