2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +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-02-06 17:45:55 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM")
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2017-05-17 08:01:14 +03:00
|
|
|
'LocalStorage.h',
|
2017-05-17 08:01:14 +03:00
|
|
|
'LocalStorageManager.h',
|
2017-05-17 08:01:14 +03:00
|
|
|
'SessionStorageManager.h',
|
2017-01-04 16:53:01 +03:00
|
|
|
'Storage.h',
|
2018-04-18 19:19:10 +03:00
|
|
|
'StorageActivityService.h',
|
2017-01-04 16:53:01 +03:00
|
|
|
'StorageIPC.h',
|
2017-07-06 20:35:33 +03:00
|
|
|
'StorageNotifierService.h',
|
2017-07-26 16:55:51 +03:00
|
|
|
'StorageUtils.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-11-26 20:38:52 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2017-05-17 08:01:13 +03:00
|
|
|
'LocalStorage.cpp',
|
2017-05-17 08:01:14 +03:00
|
|
|
'LocalStorageCache.cpp',
|
2017-05-17 08:01:14 +03:00
|
|
|
'LocalStorageManager.cpp',
|
2017-05-17 08:01:12 +03:00
|
|
|
'SessionStorage.cpp',
|
2017-05-17 08:01:14 +03:00
|
|
|
'SessionStorageCache.cpp',
|
2017-05-17 08:01:14 +03:00
|
|
|
'SessionStorageManager.cpp',
|
2017-01-04 16:53:01 +03:00
|
|
|
'Storage.cpp',
|
2018-04-18 19:19:10 +03:00
|
|
|
'StorageActivityService.cpp',
|
2017-01-04 16:53:01 +03:00
|
|
|
'StorageDBThread.cpp',
|
|
|
|
'StorageDBUpdater.cpp',
|
|
|
|
'StorageIPC.cpp',
|
2017-07-06 20:35:33 +03:00
|
|
|
'StorageNotifierService.cpp',
|
2017-01-04 16:53:01 +03:00
|
|
|
'StorageObserver.cpp',
|
2017-05-17 08:01:14 +03:00
|
|
|
'StorageUtils.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-07-01 17:56:28 +04:00
|
|
|
IPDL_SOURCES += [
|
2017-08-08 23:56:49 +03:00
|
|
|
'PBackgroundStorage.ipdl',
|
2013-07-01 17:56:28 +04:00
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
2013-10-02 21:17:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-11 12:04:11 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
|
|
DEFINES['DOM_STORAGE_TESTS'] = True
|