mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
SOURCES += [
|
|
'nsAlertsIconListener.cpp',
|
|
'nsGnomeModule.cpp',
|
|
'nsSystemAlertsService.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_ENABLE_GCONF']:
|
|
SOURCES += [
|
|
'nsGConfService.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_ENABLE_GNOMEVFS']:
|
|
SOURCES += [
|
|
'nsGnomeVFSService.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_ENABLE_GIO']:
|
|
SOURCES += [
|
|
'nsGIOService.cpp',
|
|
'nsGSettingsService.cpp',
|
|
]
|
|
|
|
XPCOMBinaryComponent('mozgnome')
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/toolkit/components/build/',
|
|
]
|
|
|
|
CXXFLAGS += CONFIG['MOZ_GCONF_CFLAGS']
|
|
CXXFLAGS += CONFIG['MOZ_GNOMEVFS_CFLAGS']
|
|
CXXFLAGS += CONFIG['MOZ_GIO_CFLAGS']
|
|
CXXFLAGS += CONFIG['GLIB_CFLAGS']
|
|
CXXFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
|
|
|
|
if CONFIG['MOZ_ENABLE_GTK']:
|
|
CXXFLAGS += CONFIG['TK_CFLAGS']
|
|
|
|
OS_LIBS += CONFIG['MOZ_GCONF_LIBS']
|
|
OS_LIBS += CONFIG['MOZ_GNOMEVFS_LIBS']
|
|
OS_LIBS += CONFIG['GLIB_LIBS']
|
|
OS_LIBS += CONFIG['MOZ_GIO_LIBS']
|
|
OS_LIBS += CONFIG['MOZ_DBUS_GLIB_LIBS']
|