summaryrefslogtreecommitdiffstats
path: root/gfx/vr/moz.build
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /gfx/vr/moz.build
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/vr/moz.build')
-rw-r--r--gfx/vr/moz.build112
1 files changed, 112 insertions, 0 deletions
diff --git a/gfx/vr/moz.build b/gfx/vr/moz.build
new file mode 100644
index 0000000000..6f24beb9ba
--- /dev/null
+++ b/gfx/vr/moz.build
@@ -0,0 +1,112 @@
+# -*- 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/.
+
+EXPORTS += [
+ "external_api/moz_external_vr.h",
+ "FxROutputHandler.h",
+ "FxRWindowManager.h",
+ "gfxVR.h",
+ "ipc/VRChild.h",
+ "ipc/VRGPUChild.h",
+ "ipc/VRGPUParent.h",
+ "ipc/VRLayerChild.h",
+ "ipc/VRManagerChild.h",
+ "ipc/VRManagerParent.h",
+ "ipc/VRMessageUtils.h",
+ "ipc/VRParent.h",
+ "ipc/VRProcessChild.h",
+ "ipc/VRProcessManager.h",
+ "ipc/VRProcessParent.h",
+ "service/VRService.h",
+ "VRDisplayClient.h",
+ "VRDisplayPresentation.h",
+ "VRManager.h",
+ "VRPuppetCommandBuffer.h",
+ "VRShMem.h",
+ "VRThread.h",
+]
+
+LOCAL_INCLUDES += [
+ "/dom/base",
+ "/dom/canvas",
+ "/gfx/layers/d3d11",
+ "/gfx/thebes",
+]
+
+UNIFIED_SOURCES += [
+ "gfxVR.cpp",
+ "ipc/VRChild.cpp",
+ "ipc/VRGPUChild.cpp",
+ "ipc/VRGPUParent.cpp",
+ "ipc/VRManagerChild.cpp",
+ "ipc/VRManagerParent.cpp",
+ "ipc/VRParent.cpp",
+ "ipc/VRProcessChild.cpp",
+ "ipc/VRProcessManager.cpp",
+ "ipc/VRProcessParent.cpp",
+ "VRDisplayClient.cpp",
+ "VRDisplayPresentation.cpp",
+ "VRThread.cpp",
+]
+
+SOURCES += [
+ "ipc/VRLayerChild.cpp",
+ "ipc/VRLayerParent.cpp",
+ "VRManager.cpp",
+ "VRPuppetCommandBuffer.cpp",
+ "VRShMem.cpp",
+]
+
+if CONFIG["OS_TARGET"] == "Android":
+ LOCAL_INCLUDES += ["/widget/android"]
+else:
+ DIRS += [
+ "service",
+ ]
+ UNIFIED_SOURCES += [
+ "VRServiceHost.cpp",
+ ]
+
+# Only target x64 for vrhost since WebVR is only supported on 64bit.
+# Also, only use MSVC compiler for Windows-specific linking
+if (
+ CONFIG["OS_ARCH"] == "WINNT"
+ and CONFIG["HAVE_64BIT_BUILD"]
+ and CONFIG["CC_TYPE"] not in ("clang", "gcc")
+):
+ DIRS += ["vrhost"]
+
+IPDL_SOURCES = [
+ "ipc/PVR.ipdl",
+ "ipc/PVRGPU.ipdl",
+ "ipc/PVRLayer.ipdl",
+ "ipc/PVRManager.ipdl",
+]
+
+# For now, only enable FxR CLH for Windows Nightly builds (BUG 1565349)
+if CONFIG["OS_ARCH"] == "WINNT" and CONFIG["NIGHTLY_BUILD"]:
+ XPCOM_MANIFESTS += [
+ "components.conf",
+ ]
+ SOURCES += [
+ "nsFxrCommandLineHandler.cpp",
+ ]
+
+if CONFIG["OS_ARCH"] == "WINNT":
+ LOCAL_INCLUDES += ["/layout/generic", "/widget", "/widget/windows"]
+ SOURCES += ["FxROutputHandler.cpp", "FxRWindowManager.cpp"]
+
+CXXFLAGS += CONFIG["MOZ_CAIRO_CFLAGS"]
+CXXFLAGS += CONFIG["TK_CFLAGS"]
+CFLAGS += CONFIG["MOZ_CAIRO_CFLAGS"]
+CFLAGS += CONFIG["TK_CFLAGS"]
+
+include("/ipc/chromium/chromium-config.mozbuild")
+
+FINAL_LIBRARY = "xul"
+
+with Files("**"):
+ BUG_COMPONENT = ("Core", "WebVR")