2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:19 +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/.
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIBFCacheEntry.idl',
|
2016-10-14 10:18:29 +03:00
|
|
|
'nsIGroupedSHistory.idl',
|
|
|
|
'nsIPartialSHistory.idl',
|
|
|
|
'nsIPartialSHistoryListener.idl',
|
2015-05-15 06:52:05 +03:00
|
|
|
'nsISHContainer.idl',
|
|
|
|
'nsISHEntry.idl',
|
|
|
|
'nsISHistory.idl',
|
|
|
|
'nsISHistoryInternal.idl',
|
|
|
|
'nsISHistoryListener.idl',
|
|
|
|
'nsISHTransaction.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'shistory'
|
2015-05-16 01:25:39 +03:00
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'nsSHEntryShared.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'nsSHEntry.cpp',
|
|
|
|
'nsSHEntryShared.cpp',
|
|
|
|
'nsSHistory.cpp',
|
|
|
|
'nsSHTransaction.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/docshell/base',
|
|
|
|
]
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
2015-09-23 07:39:03 +03:00
|
|
|
|
2016-05-11 10:00:01 +03:00
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wno-error=shadow']
|