Bug 1869043 remove declaration of missing CreateOrDestroyAudioTracks r=padenot
[gecko.git] / media / highway / moz.build
bloba7ee01bf858c067c2e8ef46d5d43a9549bda6fe5
1 # -*- Mode: python; 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 LOCAL_INCLUDES += [
8     "/third_party/highway/",
11 if CONFIG["TARGET_CPU"] == "ppc64" and CONFIG["OS_TARGET"] == "Linux":
12     DEFINES["TOOLCHAIN_MISS_ASM_HWCAP_H"] = True
14 SOURCES += [
15     "/third_party/highway/hwy/aligned_allocator.cc",
16     "/third_party/highway/hwy/contrib/image/image.cc",
17     "/third_party/highway/hwy/per_target.cc",
18     "/third_party/highway/hwy/targets.cc",
21 EXPORTS.hwy += [
22     "/third_party/highway/hwy/aligned_allocator.h",
23     "/third_party/highway/hwy/base.h",
24     "/third_party/highway/hwy/cache_control.h",
25     "/third_party/highway/hwy/detect_compiler_arch.h",
26     "/third_party/highway/hwy/detect_targets.h",
27     "/third_party/highway/hwy/foreach_target.h",
28     "/third_party/highway/hwy/highway.h",
29     "/third_party/highway/hwy/highway_export.h",
30     "/third_party/highway/hwy/targets.h",
33 EXPORTS.hwy.ops += [
34     "/third_party/highway/hwy/ops/arm_neon-inl.h",
35     "/third_party/highway/hwy/ops/arm_sve-inl.h",
36     "/third_party/highway/hwy/ops/emu128-inl.h",
37     "/third_party/highway/hwy/ops/generic_ops-inl.h",
38     "/third_party/highway/hwy/ops/ppc_vsx-inl.h",
39     "/third_party/highway/hwy/ops/rvv-inl.h",
40     "/third_party/highway/hwy/ops/scalar-inl.h",
41     "/third_party/highway/hwy/ops/set_macros-inl.h",
42     "/third_party/highway/hwy/ops/shared-inl.h",
43     "/third_party/highway/hwy/ops/tuple-inl.h",
44     "/third_party/highway/hwy/ops/wasm_128-inl.h",
45     "/third_party/highway/hwy/ops/x86_128-inl.h",
46     "/third_party/highway/hwy/ops/x86_256-inl.h",
47     "/third_party/highway/hwy/ops/x86_512-inl.h",
50 FINAL_LIBRARY = "gkmedias"
52 # We allow warnings for third-party code that can be updated from upstream.
53 AllowCompilerWarnings()