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("**"):
|
2019-11-08 15:17:57 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: UI Events & Focus Handling")
|
2017-02-06 17:45:55 +03:00
|
|
|
|
2018-07-10 12:48:43 +03:00
|
|
|
EXPORTS += [
|
2018-09-03 03:49:18 +03:00
|
|
|
"nsBaseCommandController.h",
|
2018-09-03 03:43:16 +03:00
|
|
|
"nsCommandManager.h",
|
2018-07-10 12:48:43 +03:00
|
|
|
"nsCommandParams.h",
|
2018-09-07 06:17:29 +03:00
|
|
|
"nsControllerCommandTable.h",
|
2018-07-10 12:48:43 +03:00
|
|
|
]
|
|
|
|
|
2014-08-20 21:27:16 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsICommandManager.idl",
|
|
|
|
"nsICommandParams.idl",
|
|
|
|
"nsIControllerCommand.idl",
|
|
|
|
"nsIControllerCommandTable.idl",
|
|
|
|
"nsIControllerContext.idl",
|
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2014-08-20 21:27:16 +04:00
|
|
|
XPIDL_MODULE = "commandhandler"
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"nsBaseCommandController.cpp",
|
|
|
|
"nsCommandManager.cpp",
|
|
|
|
"nsCommandParams.cpp",
|
|
|
|
"nsControllerCommandTable.cpp",
|
|
|
|
]
|
|
|
|
|
2018-09-07 16:42:11 +03:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
"/dom/base",
|
|
|
|
]
|
|
|
|
|
2014-08-20 21:27:16 +04:00
|
|
|
FINAL_LIBRARY = "xul"
|