summaryrefslogtreecommitdiffstats
path: root/media/highway/moz.build
blob: a7ee01bf858c067c2e8ef46d5d43a9549bda6fe5 (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
# -*- 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/.

LOCAL_INCLUDES += [
    "/third_party/highway/",
]

if CONFIG["TARGET_CPU"] == "ppc64" and CONFIG["OS_TARGET"] == "Linux":
    DEFINES["TOOLCHAIN_MISS_ASM_HWCAP_H"] = True

SOURCES += [
    "/third_party/highway/hwy/aligned_allocator.cc",
    "/third_party/highway/hwy/contrib/image/image.cc",
    "/third_party/highway/hwy/per_target.cc",
    "/third_party/highway/hwy/targets.cc",
]

EXPORTS.hwy += [
    "/third_party/highway/hwy/aligned_allocator.h",
    "/third_party/highway/hwy/base.h",
    "/third_party/highway/hwy/cache_control.h",
    "/third_party/highway/hwy/detect_compiler_arch.h",
    "/third_party/highway/hwy/detect_targets.h",
    "/third_party/highway/hwy/foreach_target.h",
    "/third_party/highway/hwy/highway.h",
    "/third_party/highway/hwy/highway_export.h",
    "/third_party/highway/hwy/targets.h",
]

EXPORTS.hwy.ops += [
    "/third_party/highway/hwy/ops/arm_neon-inl.h",
    "/third_party/highway/hwy/ops/arm_sve-inl.h",
    "/third_party/highway/hwy/ops/emu128-inl.h",
    "/third_party/highway/hwy/ops/generic_ops-inl.h",
    "/third_party/highway/hwy/ops/ppc_vsx-inl.h",
    "/third_party/highway/hwy/ops/rvv-inl.h",
    "/third_party/highway/hwy/ops/scalar-inl.h",
    "/third_party/highway/hwy/ops/set_macros-inl.h",
    "/third_party/highway/hwy/ops/shared-inl.h",
    "/third_party/highway/hwy/ops/tuple-inl.h",
    "/third_party/highway/hwy/ops/wasm_128-inl.h",
    "/third_party/highway/hwy/ops/x86_128-inl.h",
    "/third_party/highway/hwy/ops/x86_256-inl.h",
    "/third_party/highway/hwy/ops/x86_512-inl.h",
]

FINAL_LIBRARY = "gkmedias"

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