summaryrefslogtreecommitdiffstats
path: root/widget/cocoa/moz.build
blob: c4f887297def75f8ca2ee78f8114e9f9bdc63ae1 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.

XPIDL_SOURCES += [
    'nsPIWidgetCocoa.idl',
]

XPIDL_MODULE = 'widget_cocoa'

EXPORTS += [
    'mozView.h',
    'nsBidiKeyboard.h',
    'nsChangeObserver.h',
    'nsCocoaDebugUtils.h',
    'nsCocoaFeatures.h',
    'nsCocoaUtils.h',
]

UNIFIED_SOURCES += [
    'ComplexTextInputPanel.mm',
    'GfxInfo.mm',
    'NativeKeyBindings.mm',
    'nsAppShell.mm',
    'nsBidiKeyboard.mm',
    'nsCocoaFeatures.mm',
    'nsCocoaUtils.mm',
    'nsCocoaWindow.mm',
    'nsColorPicker.mm',
    'nsCursorManager.mm',
    'nsDeviceContextSpecX.mm',
    'nsFilePicker.mm',
    'nsIdleServiceX.mm',
    'nsLookAndFeel.mm',
    'nsMacCursor.mm',
    'nsMacDockSupport.mm',
    'nsMacWebAppUtils.mm',
    'nsMenuBarX.mm',
    'nsMenuGroupOwnerX.mm',
    'nsMenuItemIconX.mm',
    'nsMenuItemX.mm',
    'nsMenuUtilsX.mm',
    'nsMenuX.mm',
    'nsPrintDialogX.mm',
    'nsPrintOptionsX.mm',
    'nsPrintSettingsX.mm',
    'nsScreenCocoa.mm',
    'nsScreenManagerCocoa.mm',
    'nsSound.mm',
    'nsStandaloneNativeMenu.mm',
    'nsSystemStatusBarCocoa.mm',
    'nsToolkit.mm',
    'nsWidgetFactory.mm',
    'nsWindowMap.mm',
    'OSXNotificationCenter.mm',
    'RectTextureImage.mm',
    'SwipeTracker.mm',
    'TextInputHandler.mm',
    'VibrancyManager.mm',
    'ViewRegion.mm',
    'WidgetTraceEvent.mm',
]

# These files cannot be built in unified mode because they cause symbol conflicts
SOURCES += [
    'nsChildView.mm',
    'nsClipboard.mm',
    'nsCocoaDebugUtils.mm',
    'nsDragService.mm',
    'nsNativeThemeCocoa.mm',
]

if not CONFIG['RELEASE_OR_BETA'] or CONFIG['MOZ_DEBUG']:
    SOURCES += [
        'nsSandboxViolationSink.mm',
    ]

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

# XXX: We should fix these warnings.
ALLOW_COMPILER_WARNINGS = True

FINAL_LIBRARY = 'xul'
LOCAL_INCLUDES += [
    '/layout/forms',
    '/layout/generic',
    '/layout/style',
    '/layout/xul',
    '/widget',
]

RESOURCE_FILES.cursors += [
    'cursors/arrowN.png',
    'cursors/arrowN@2x.png',
    'cursors/arrowS.png',
    'cursors/arrowS@2x.png',
    'cursors/cell.png',
    'cursors/cell@2x.png',
    'cursors/colResize.png',
    'cursors/colResize@2x.png',
    'cursors/help.png',
    'cursors/help@2x.png',
    'cursors/move.png',
    'cursors/move@2x.png',
    'cursors/rowResize.png',
    'cursors/rowResize@2x.png',
    'cursors/sizeNE.png',
    'cursors/sizeNE@2x.png',
    'cursors/sizeNESW.png',
    'cursors/sizeNESW@2x.png',
    'cursors/sizeNS.png',
    'cursors/sizeNS@2x.png',
    'cursors/sizeNW.png',
    'cursors/sizeNW@2x.png',
    'cursors/sizeNWSE.png',
    'cursors/sizeNWSE@2x.png',
    'cursors/sizeSE.png',
    'cursors/sizeSE@2x.png',
    'cursors/sizeSW.png',
    'cursors/sizeSW@2x.png',
    'cursors/vtIBeam.png',
    'cursors/vtIBeam@2x.png',
    'cursors/zoomIn.png',
    'cursors/zoomIn@2x.png',
    'cursors/zoomOut.png',
    'cursors/zoomOut@2x.png',
]

# These resources go in $(DIST)/bin/res/MainMenu.nib, but we can't use a magic
# RESOURCE_FILES.MainMenu.nib attribute, since that would put the files in
# $(DIST)/bin/res/MainMenu/nib. Instead, we call __setattr__ directly to create
# an attribute with the correct name.
RESOURCE_FILES.__setattr__('MainMenu.nib', [
    'resources/MainMenu.nib/classes.nib',
    'resources/MainMenu.nib/info.nib',
    'resources/MainMenu.nib/keyedobjects.nib',
])

CXXFLAGS += CONFIG['TK_CFLAGS']