2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-03-02 16:20:00 +03: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")
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
EXPORTS.mozilla.dom.cache += [
|
|
|
|
'Action.h',
|
|
|
|
'ActorChild.h',
|
|
|
|
'ActorUtils.h',
|
|
|
|
'AutoUtils.h',
|
|
|
|
'Cache.h',
|
|
|
|
'CacheChild.h',
|
2015-04-16 22:00:15 +03:00
|
|
|
'CacheOpChild.h',
|
|
|
|
'CacheOpParent.h',
|
2015-03-02 16:20:00 +03:00
|
|
|
'CacheParent.h',
|
|
|
|
'CacheStorage.h',
|
|
|
|
'CacheStorageChild.h',
|
|
|
|
'CacheStorageParent.h',
|
|
|
|
'CacheStreamControlChild.h',
|
|
|
|
'CacheStreamControlParent.h',
|
2016-06-23 11:53:14 +03:00
|
|
|
'CacheWorkerHolder.h',
|
2015-05-28 17:46:47 +03:00
|
|
|
'Connection.h',
|
2015-03-02 16:20:00 +03:00
|
|
|
'Context.h',
|
|
|
|
'DBAction.h',
|
|
|
|
'DBSchema.h',
|
|
|
|
'FileUtils.h',
|
|
|
|
'IPCUtils.h',
|
|
|
|
'Manager.h',
|
|
|
|
'ManagerId.h',
|
|
|
|
'PrincipalVerifier.h',
|
|
|
|
'QuotaClient.h',
|
|
|
|
'ReadStream.h',
|
|
|
|
'SavedTypes.h',
|
2015-03-20 21:01:57 +03:00
|
|
|
'StreamControl.h',
|
2015-03-02 16:20:00 +03:00
|
|
|
'StreamList.h',
|
|
|
|
'Types.h',
|
|
|
|
'TypeUtils.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'Action.cpp',
|
|
|
|
'ActorChild.cpp',
|
|
|
|
'AutoUtils.cpp',
|
|
|
|
'Cache.cpp',
|
|
|
|
'CacheChild.cpp',
|
2015-04-16 22:00:15 +03:00
|
|
|
'CacheOpChild.cpp',
|
|
|
|
'CacheOpParent.cpp',
|
2015-03-02 16:20:00 +03:00
|
|
|
'CacheParent.cpp',
|
|
|
|
'CacheStorage.cpp',
|
|
|
|
'CacheStorageChild.cpp',
|
|
|
|
'CacheStorageParent.cpp',
|
|
|
|
'CacheStreamControlChild.cpp',
|
|
|
|
'CacheStreamControlParent.cpp',
|
2016-06-23 11:53:14 +03:00
|
|
|
'CacheWorkerHolder.cpp',
|
2015-05-28 17:46:47 +03:00
|
|
|
'Connection.cpp',
|
2015-03-02 16:20:00 +03:00
|
|
|
'Context.cpp',
|
|
|
|
'DBAction.cpp',
|
|
|
|
'DBSchema.cpp',
|
|
|
|
'FileUtils.cpp',
|
|
|
|
'Manager.cpp',
|
|
|
|
'ManagerId.cpp',
|
|
|
|
'PrincipalVerifier.cpp',
|
|
|
|
'QuotaClient.cpp',
|
|
|
|
'ReadStream.cpp',
|
2015-03-20 21:01:57 +03:00
|
|
|
'StreamControl.cpp',
|
2015-03-02 16:20:00 +03:00
|
|
|
'StreamList.cpp',
|
|
|
|
'TypeUtils.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
2015-04-16 22:00:15 +03:00
|
|
|
'CacheTypes.ipdlh',
|
2015-03-02 16:20:00 +03:00
|
|
|
'PCache.ipdl',
|
2015-04-16 22:00:15 +03:00
|
|
|
'PCacheOp.ipdl',
|
2015-03-02 16:20:00 +03:00
|
|
|
'PCacheStorage.ipdl',
|
|
|
|
'PCacheStreamControl.ipdl',
|
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../workers',
|
|
|
|
]
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
2015-03-02 16:24:00 +03:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'test/mochitest/mochitest.ini',
|
|
|
|
]
|
2015-05-06 01:45:36 +03:00
|
|
|
|
2015-06-27 05:36:40 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
|
|
'test/mochitest/browser.ini',
|
|
|
|
]
|
2015-09-01 00:26:30 +03:00
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'test/xpcshell/xpcshell.ini',
|
|
|
|
]
|
2016-05-11 10:00:01 +03:00
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wno-error=shadow']
|