2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:20:02 +00: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/.
|
|
|
|
|
2013-08-15 13:12:40 +00:00
|
|
|
if CONFIG['MOZ_ENABLE_GTK2']:
|
|
|
|
LIBRARY_NAME = 'widget_gtk2'
|
|
|
|
else:
|
|
|
|
LIBRARY_NAME = 'widget_gtk3'
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS += [
|
|
|
|
'mozcontainer.h',
|
|
|
|
'nsGTKToolkit.h',
|
|
|
|
'nsIImageToPixbuf.h',
|
|
|
|
]
|
|
|
|
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'mozcontainer.c',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsBidiKeyboard.cpp',
|
2013-06-22 13:39:43 +00:00
|
|
|
'nsColorPicker.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsFilePicker.cpp',
|
|
|
|
'nsGtkKeyUtils.cpp',
|
|
|
|
'nsImageToPixbuf.cpp',
|
|
|
|
'nsLookAndFeel.cpp',
|
|
|
|
'nsNativeKeyBindings.cpp',
|
|
|
|
'nsNativeThemeGTK.cpp',
|
|
|
|
'nsScreenGtk.cpp',
|
|
|
|
'nsScreenManagerGtk.cpp',
|
|
|
|
'nsSound.cpp',
|
|
|
|
'nsToolkit.cpp',
|
2013-12-04 01:06:16 +00:00
|
|
|
'WidgetTraceEvent.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
# These files force-enable NSPR logging and thus cannot be built in unified mode
|
|
|
|
SOURCES += [
|
|
|
|
'nsAppShell.cpp',
|
|
|
|
'nsGtkIMModule.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsWidgetFactory.cpp',
|
|
|
|
'nsWindow.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsIdleServiceGTK.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['NS_PRINTING']:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-10-23 23:00:23 +00:00
|
|
|
'nsCUPSShim.cpp',
|
|
|
|
'nsPaperPS.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsPrintDialogGTK.cpp',
|
2013-10-23 23:00:23 +00:00
|
|
|
'nsPrintOptionsGTK.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsPrintSettingsGTK.cpp',
|
2013-10-23 23:05:43 +00:00
|
|
|
'nsPSPrinters.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
]
|
2013-12-04 01:06:16 +00:00
|
|
|
# This file force-enables NSPR logging and thus cannot be built in unified mode
|
|
|
|
SOURCES += [
|
|
|
|
'nsDeviceContextSpecG.cpp',
|
|
|
|
]
|
2013-04-23 21:54:15 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-12-04 08:23:15 +00:00
|
|
|
'nsClipboard.cpp',
|
2013-12-04 01:06:16 +00:00
|
|
|
]
|
|
|
|
# This file force-enables NSPR logging and thus cannot be built in unified mode
|
|
|
|
SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'nsDragService.cpp',
|
|
|
|
]
|
2013-08-22 06:55:59 +00:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-20 21:37:36 +00:00
|
|
|
if CONFIG['ACCESSIBILITY']:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-09-20 21:37:36 +00:00
|
|
|
'maiRedundantObjectFactory.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_ENABLE_GTK2']:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-09-20 21:37:36 +00:00
|
|
|
'gtk2drawing.c',
|
|
|
|
]
|
|
|
|
else:
|
2013-12-04 01:06:16 +00:00
|
|
|
UNIFIED_SOURCES += [
|
2013-09-20 21:37:36 +00:00
|
|
|
'gtk3drawing.c',
|
|
|
|
]
|
2013-10-03 07:11:13 +00:00
|
|
|
|
2013-10-02 17:17:55 +00:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-11-19 02:47:14 +00:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-27 13:55:07 +00:00
|
|
|
|
2013-11-28 14:17:25 +00:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../shared',
|
|
|
|
'../xpwidgets',
|
|
|
|
'/layout/generic',
|
2013-12-04 01:06:16 +00:00
|
|
|
'/layout/xul',
|
2013-11-28 14:17:25 +00:00
|
|
|
'/other-licenses/atk-1.0',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_X11']:
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../shared/x11',
|
|
|
|
]
|
|
|
|
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES['CAIRO_GFX'] = True
|
|
|
|
|
|
|
|
DEFINES['MOZ_APP_NAME'] = '"%s"' % CONFIG['MOZ_APP_NAME']
|