2018-11-29 23:47:20 +03:00
|
|
|
# -*- 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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom.localstorage += [
|
|
|
|
'ActorsParent.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'LocalStorageCommon.h',
|
|
|
|
'LocalStorageManager2.h',
|
|
|
|
'LSObject.h',
|
2018-11-29 23:47:45 +03:00
|
|
|
'LSObserver.h',
|
2018-11-29 23:47:20 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'ActorsChild.cpp',
|
|
|
|
'ActorsParent.cpp',
|
|
|
|
'LocalStorageCommon.cpp',
|
|
|
|
'LocalStorageManager2.cpp',
|
|
|
|
'LSDatabase.cpp',
|
|
|
|
'LSObject.cpp',
|
2018-11-29 23:47:45 +03:00
|
|
|
'LSObserver.cpp',
|
2018-11-29 23:47:27 +03:00
|
|
|
'ReportInternalError.cpp',
|
2018-11-29 23:47:20 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PBackgroundLSDatabase.ipdl',
|
2018-11-29 23:47:45 +03:00
|
|
|
'PBackgroundLSObject.ipdl',
|
|
|
|
'PBackgroundLSObserver.ipdl',
|
2018-11-29 23:47:20 +03:00
|
|
|
'PBackgroundLSRequest.ipdl',
|
|
|
|
'PBackgroundLSSharedTypes.ipdlh',
|
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wno-error=shadow']
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/file/ipc',
|
|
|
|
]
|