gecko-dev/dom/commandhandler/moz.build
Masayuki Nakano bf9dea1dda Bug 1450882 - part 3: Create non-virtual methods to nsCommandParams and expose its header r=Ehsan
nsCommandParams is used internally but accessed via nsICommandParams.  For
such internal users, nsCommandParams should have non-virtual methods to
get/set values.

The new method names are similar to Preferences API for consistency with it.

MozReview-Commit-ID: FJwWMFzV9w

--HG--
extra : rebase_source : 649990ba827cd14503fd46dd647452d06acf6bf0
2018-07-10 18:48:43 +09:00

34 lines
838 B
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
with Files("**"):
BUG_COMPONENT = ("Core", "Embedding: APIs")
EXPORTS += [
'nsCommandParams.h',
]
XPIDL_SOURCES += [
'nsICommandManager.idl',
'nsICommandParams.idl',
'nsIControllerCommand.idl',
'nsIControllerCommandTable.idl',
'nsIControllerContext.idl',
'nsPICommandUpdater.idl',
]
XPIDL_MODULE = 'commandhandler'
UNIFIED_SOURCES += [
'nsBaseCommandController.cpp',
'nsCommandGroup.cpp',
'nsCommandManager.cpp',
'nsCommandParams.cpp',
'nsControllerCommandTable.cpp',
]
FINAL_LIBRARY = 'xul'