summaryrefslogtreecommitdiffstats
path: root/gfx/vr/moz.build
blob: ec56fc56341d82e65803dc34234d8088d5064e56 (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
# -*- 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/cairo/cairo/src",
    "/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",
    ]

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"]

if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
    CXXFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
    CFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]

include("/ipc/chromium/chromium-config.mozbuild")

FINAL_LIBRARY = "xul"

with Files("**"):
    BUG_COMPONENT = ("Core", "WebVR")