summaryrefslogtreecommitdiffstats
path: root/media/libaom/test/fuzztest/moz.build
blob: 810286596fc1cf3ba4f01728ce8efe26300f2ab9 (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
# -*- 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/.

Library('FuzzingAOM')

LOCAL_INCLUDES += [
    '/media/libaom/config',
    '/third_party/aom',
]

# We currently only support building on Linux for fuzzing here, as guarded
# in media/libaom/moz.build. More support can be added later if necessary.
if CONFIG['CPU_ARCH'] == 'x86_64':
    LOCAL_INCLUDES += [
        '/media/libaom/config/linux/x64/',
        '/media/libvpx/config/linux/x64/',
    ]
elif CONFIG['CPU_ARCH'] == 'x86':
    LOCAL_INCLUDES += [
        '/media/libaom/config/linux/ia32/',
        '/media/libvpx/config/linux/ia32/',
    ]
elif CONFIG['CPU_ARCH'] == 'arm':
    LOCAL_INCLUDES += [
        '/media/libaom/config/linux/arm/',
        '/media/libvpx/config/linux/arm/',
    ]
elif CONFIG['CPU_ARCH'] == 'aarch64':
    LOCAL_INCLUDES += [
        '/media/libaom/config/generic/',
        '/media/libvpx/config/linux/arm64/',
    ]

SOURCES += [
    '/media/libvpx/libvpx/ivfdec.c',
    '/third_party/aom/common/tools_common.c',
    'av1_fuzzer.cpp',
]

# Ignore unused variables in the imported AV1 fuzzer
SOURCES['av1_fuzzer.cpp'].flags += ['-Wno-unused-variable']

include('/tools/fuzzing/libfuzzer-config.mozbuild')

FINAL_LIBRARY = 'xul-gtest'