Bug 1892041 - Part 1: Update test262 features. r=spidermonkey-reviewers,dminor
[gecko.git] / dom / webbrowserpersist / moz.build
blob2c3e6a4d0fcd09dbd2038ef7ad14d43e533fd540
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 # moved from embedding/components/webbrowserpersist Jan 13, 2017
8 with Files("**"):
9     BUG_COMPONENT = ("Core", "DOM: Core & HTML")
11 XPIDL_SOURCES += [
12     "nsIWebBrowserPersist.idl",
13     "nsIWebBrowserPersistDocument.idl",
16 XPIDL_MODULE = "webbrowserpersist"
18 IPDL_SOURCES += [
19     "PWebBrowserPersistDocument.ipdl",
20     "PWebBrowserPersistResources.ipdl",
21     "PWebBrowserPersistSerialize.ipdl",
24 UNIFIED_SOURCES += [
25     "nsWebBrowserPersist.cpp",
26     "WebBrowserPersistDocumentChild.cpp",
27     "WebBrowserPersistDocumentParent.cpp",
28     "WebBrowserPersistLocalDocument.cpp",
29     "WebBrowserPersistRemoteDocument.cpp",
30     "WebBrowserPersistResourcesChild.cpp",
31     "WebBrowserPersistResourcesParent.cpp",
32     "WebBrowserPersistSerializeChild.cpp",
33     "WebBrowserPersistSerializeParent.cpp",
36 EXPORTS.mozilla += [
37     "WebBrowserPersistDocumentChild.h",
38     "WebBrowserPersistDocumentParent.h",
39     "WebBrowserPersistLocalDocument.h",
42 include("/ipc/chromium/chromium-config.mozbuild")
44 FINAL_LIBRARY = "xul"
45 LOCAL_INCLUDES += [
46     "/docshell/shistory",
47     "/dom/base",
48     "/dom/html",