2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:02 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-04-14 12:54:36 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Widget: Gtk")
|
|
|
|
|
2017-05-30 05:29:22 +03:00
|
|
|
with Files("*CompositorWidget*"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics")
|
|
|
|
|
|
|
|
with Files("*WindowSurface*"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics")
|
|
|
|
|
2016-03-16 07:32:47 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3':
|
2014-05-01 15:36:05 +04:00
|
|
|
DIRS += ['mozgtk']
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'mozcontainer.h',
|
|
|
|
'nsGTKToolkit.h',
|
|
|
|
'nsIImageToPixbuf.h',
|
|
|
|
]
|
|
|
|
|
2015-04-29 23:29:34 +03:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'WidgetUtilsGtk.h'
|
|
|
|
]
|
|
|
|
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2015-07-27 02:23:04 +03:00
|
|
|
'IMContextWrapper.cpp',
|
2017-02-22 11:49:54 +03:00
|
|
|
'mozcontainer.cpp',
|
2014-03-14 17:13:32 +04:00
|
|
|
'NativeKeyBindings.cpp',
|
2014-10-09 00:19:14 +04:00
|
|
|
'nsAppShell.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsBidiKeyboard.cpp',
|
2013-06-22 17:39:43 +04:00
|
|
|
'nsColorPicker.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsFilePicker.cpp',
|
2015-07-27 02:23:04 +03:00
|
|
|
'nsGtkKeyUtils.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsImageToPixbuf.cpp',
|
|
|
|
'nsLookAndFeel.cpp',
|
|
|
|
'nsNativeThemeGTK.cpp',
|
|
|
|
'nsSound.cpp',
|
|
|
|
'nsToolkit.cpp',
|
2014-10-09 00:19:14 +04:00
|
|
|
'nsWidgetFactory.cpp',
|
2017-03-09 14:29:44 +03:00
|
|
|
'ScreenHelperGTK.cpp',
|
2014-06-18 08:11:00 +04:00
|
|
|
'WakeLockListener.cpp',
|
2013-12-04 05:06:16 +04:00
|
|
|
'WidgetTraceEvent.cpp',
|
2015-04-29 23:29:34 +03:00
|
|
|
'WidgetUtilsGtk.cpp',
|
2013-12-04 05:06:16 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
SOURCES += [
|
2014-10-09 00:19:14 +04:00
|
|
|
'nsWindow.cpp', # conflicts with X11 headers
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2016-07-22 20:23:07 +03:00
|
|
|
'CompositorWidgetChild.cpp',
|
|
|
|
'CompositorWidgetParent.cpp',
|
2017-12-18 22:20:02 +03:00
|
|
|
'GtkCompositorWidget.cpp',
|
|
|
|
'InProcessGtkCompositorWidget.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsIdleServiceGTK.cpp',
|
2016-07-22 20:23:07 +03:00
|
|
|
]
|
|
|
|
EXPORTS.mozilla.widget += [
|
|
|
|
'CompositorWidgetChild.h',
|
|
|
|
'CompositorWidgetParent.h',
|
2017-12-18 22:20:02 +03:00
|
|
|
'GtkCompositorWidget.h',
|
|
|
|
'InProcessGtkCompositorWidget.h',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['NS_PRINTING']:
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-10-24 03:00:23 +04:00
|
|
|
'nsCUPSShim.cpp',
|
2014-10-09 00:19:14 +04:00
|
|
|
'nsDeviceContextSpecG.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsPrintDialogGTK.cpp',
|
2013-10-24 03:00:23 +04:00
|
|
|
'nsPrintOptionsGTK.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsPrintSettingsGTK.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'nsPSPrinters.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-12-04 12:23:15 +04:00
|
|
|
'nsClipboard.cpp',
|
2017-11-16 16:00:00 +03:00
|
|
|
'nsClipboardX11.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsDragService.cpp',
|
2016-07-22 20:23:07 +03:00
|
|
|
'WindowSurfaceProvider.cpp',
|
2016-07-11 23:08:43 +03:00
|
|
|
'WindowSurfaceX11.cpp',
|
|
|
|
'WindowSurfaceX11Image.cpp',
|
|
|
|
'WindowSurfaceXRender.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
2016-07-22 20:23:07 +03:00
|
|
|
EXPORTS.mozilla.widget += [
|
|
|
|
'WindowSurfaceProvider.h',
|
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
2017-10-26 21:19:36 +03:00
|
|
|
if CONFIG['MOZ_WAYLAND']:
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'WindowSurfaceWayland.cpp',
|
|
|
|
]
|
|
|
|
|
2013-09-21 01:37:36 +04:00
|
|
|
if CONFIG['ACCESSIBILITY']:
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-09-21 01:37:36 +04:00
|
|
|
'maiRedundantObjectFactory.c',
|
|
|
|
]
|
|
|
|
|
2016-03-16 07:30:34 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk2':
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-09-21 01:37:36 +04:00
|
|
|
'gtk2drawing.c',
|
|
|
|
]
|
|
|
|
else:
|
2013-12-04 05:06:16 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2016-03-23 05:49:00 +03:00
|
|
|
'gtk3drawing.cpp',
|
2015-06-08 11:41:00 +03:00
|
|
|
'nsApplicationChooser.cpp',
|
2016-05-09 02:08:26 +03:00
|
|
|
'WidgetStyleCache.cpp',
|
2013-09-21 01:37:36 +04:00
|
|
|
]
|
2013-10-03 11:11:13 +04:00
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-27 17:55:07 +04:00
|
|
|
|
2013-11-28 18:17:25 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/layout/generic',
|
2013-12-04 05:06:16 +04:00
|
|
|
'/layout/xul',
|
2013-11-28 18:17:25 +04:00
|
|
|
'/other-licenses/atk-1.0',
|
2014-10-23 21:16:45 +04:00
|
|
|
'/widget',
|
2017-04-04 17:22:00 +03:00
|
|
|
'/widget/headless',
|
2013-11-28 18:17:25 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
|
|
|
LOCAL_INCLUDES += [
|
2014-10-23 21:16:47 +04:00
|
|
|
'/widget/x11',
|
2013-11-28 18:17:25 +04:00
|
|
|
]
|
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['CAIRO_GFX'] = True
|
|
|
|
|
|
|
|
DEFINES['MOZ_APP_NAME'] = '"%s"' % CONFIG['MOZ_APP_NAME']
|
2014-07-24 19:55:33 +04:00
|
|
|
|
|
|
|
CFLAGS += CONFIG['MOZ_STARTUP_NOTIFICATION_CFLAGS']
|
2015-05-08 00:08:20 +03:00
|
|
|
|
|
|
|
# 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.
|
2016-03-16 07:32:47 +03:00
|
|
|
if not (CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3' and CONFIG['MOZ_TREE_CAIRO']):
|
2015-05-08 00:08:20 +03:00
|
|
|
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
|
|
|
|
|
2014-07-24 19:55:33 +04:00
|
|
|
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']
|
2016-05-11 10:00:01 +03:00
|
|
|
|
|
|
|
CXXFLAGS += ['-Wno-error=shadow']
|