summaryrefslogtreecommitdiffstats
path: root/widget/gtk/moz.build
blob: baccb6ccd900bdc2f729a744a840cd65f9e36629 (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
141
# -*- 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/.

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3':
    DIRS += ['mozgtk']

EXPORTS += [
    'mozcontainer.h',
    'nsGTKToolkit.h',
    'nsIImageToPixbuf.h',
]

EXPORTS.mozilla += [
    'WidgetUtilsGtk.h'
]

UNIFIED_SOURCES += [
    'IMContextWrapper.cpp',
    'mozcontainer.c',
    'NativeKeyBindings.cpp',
    'nsAppShell.cpp',
    'nsBidiKeyboard.cpp',
    'nsColorPicker.cpp',
    'nsFilePicker.cpp',
    'nsGtkKeyUtils.cpp',
    'nsImageToPixbuf.cpp',
    'nsLookAndFeel.cpp',
    'nsNativeThemeGTK.cpp',
    'nsScreenGtk.cpp',
    'nsScreenManagerGtk.cpp',
    'nsSound.cpp',
    'nsToolkit.cpp',
    'nsWidgetFactory.cpp',
    'WakeLockListener.cpp',
    'WidgetTraceEvent.cpp',
    'WidgetUtilsGtk.cpp',
]

SOURCES += [
    'nsWindow.cpp', # conflicts with X11 headers
]

if CONFIG['MOZ_X11']:
    UNIFIED_SOURCES += [
        'CompositorWidgetChild.cpp',
        'CompositorWidgetParent.cpp',
        'InProcessX11CompositorWidget.cpp',
        'nsIdleServiceGTK.cpp',
        'X11CompositorWidget.cpp',
    ]
    EXPORTS.mozilla.widget += [
        'CompositorWidgetChild.h',
        'CompositorWidgetParent.h',
        'InProcessX11CompositorWidget.h',
        'X11CompositorWidget.h',
    ]

if CONFIG['NS_PRINTING']:
    UNIFIED_SOURCES += [
        'nsCUPSShim.cpp',
        'nsDeviceContextSpecG.cpp',
        'nsPaperPS.cpp',
        'nsPrintDialogGTK.cpp',
        'nsPrintOptionsGTK.cpp',
        'nsPrintSettingsGTK.cpp',
        'nsPSPrinters.cpp',
    ]

if CONFIG['MOZ_X11']:
    UNIFIED_SOURCES += [
        'nsClipboard.cpp',
        'nsDragService.cpp',
        'WindowSurfaceProvider.cpp',
        'WindowSurfaceX11.cpp',
        'WindowSurfaceX11Image.cpp',
        'WindowSurfaceXRender.cpp',
    ]
    EXPORTS.mozilla.widget += [
        'WindowSurfaceProvider.h',
    ]

if CONFIG['ACCESSIBILITY']:
    UNIFIED_SOURCES += [
        'maiRedundantObjectFactory.c',
    ]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk2':
    UNIFIED_SOURCES += [
        'gtk2drawing.c',
    ]
else:
    UNIFIED_SOURCES += [
        'gtk3drawing.cpp',
        'nsApplicationChooser.cpp',
        'WidgetStyleCache.cpp',
    ]

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

FINAL_LIBRARY = 'xul'

LOCAL_INCLUDES += [
    '/layout/generic',
    '/layout/xul',
    '/other-licenses/atk-1.0',
    '/widget',
]

if CONFIG['MOZ_X11']:
    LOCAL_INCLUDES += [
        '/widget/x11',
    ]

DEFINES['CAIRO_GFX'] = True

DEFINES['MOZ_APP_NAME'] = '"%s"' % CONFIG['MOZ_APP_NAME']

CFLAGS += CONFIG['MOZ_STARTUP_NOTIFICATION_CFLAGS']

# When building with GTK3, the widget code always needs to use
# system Cairo headers, regardless of whether we are also linked
# against and using in-tree Cairo. By not using in-tree Cairo
# headers, we avoid picking up our renamed symbols, and instead
# use only system Cairo symbols that GTK3 uses. This allows that
# any Cairo objects created can be freely passed back and forth
# between the widget code and GTK3.
if not (CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3' and CONFIG['MOZ_TREE_CAIRO']):
    CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']

CXXFLAGS += CONFIG['MOZ_STARTUP_NOTIFICATION_CFLAGS']

CFLAGS += CONFIG['TK_CFLAGS']
CXXFLAGS += CONFIG['TK_CFLAGS']

if CONFIG['MOZ_ENABLE_DBUS']:
    CXXFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']

CXXFLAGS += ['-Wno-error=shadow']