Bug 1795723 - Unified extensions UI should support High Contrast Mode. r=ayeddi,deskt...
[gecko.git] / dom / localstorage / moz.build
bloba7f5e0b3596e7eb0927b2103a3d79b81fce0de47
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "Storage: localStorage & sessionStorage")
10 MOCHITEST_MANIFESTS += ["test/mochitest.ini"]
12 BROWSER_CHROME_MANIFESTS += ["test/browser.ini"]
14 XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.ini"]
16 TEST_HARNESS_FILES.xpcshell.dom.localstorage.test.unit += [
17     "test/unit/databaseShadowing-shared.js",
20 TEST_DIRS += ["test/gtest"]
22 XPIDL_SOURCES += [
23     "nsILocalStorageManager.idl",
26 XPIDL_MODULE = "dom_localstorage"
28 EXPORTS.mozilla.dom.localstorage += [
29     "ActorsParent.h",
30     "SerializationHelpers.h",
33 EXPORTS.mozilla.dom += [
34     "LocalStorageCommon.h",
35     "LocalStorageManager2.h",
36     "LSObject.h",
37     "LSObserver.h",
38     "LSSnapshot.h",
39     "LSValue.h",
40     "LSWriteOptimizer.h",
41     "LSWriteOptimizerImpl.h",
42     "SnappyUtils.h",
45 UNIFIED_SOURCES += [
46     "ActorsChild.cpp",
47     "ActorsParent.cpp",
48     "LocalStorageCommon.cpp",
49     "LocalStorageManager2.cpp",
50     "LSDatabase.cpp",
51     "LSObject.cpp",
52     "LSObserver.cpp",
53     "LSSnapshot.cpp",
54     "LSValue.cpp",
55     "LSWriteOptimizer.cpp",
56     "ReportInternalError.cpp",
57     "SnappyUtils.cpp",
60 IPDL_SOURCES += [
61     "PBackgroundLSDatabase.ipdl",
62     "PBackgroundLSObserver.ipdl",
63     "PBackgroundLSRequest.ipdl",
64     "PBackgroundLSSharedTypes.ipdlh",
65     "PBackgroundLSSimpleRequest.ipdl",
66     "PBackgroundLSSnapshot.ipdl",
69 include("/ipc/chromium/chromium-config.mozbuild")
71 FINAL_LIBRARY = "xul"
73 LOCAL_INCLUDES += [
74     "/dom/file/ipc",