1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/editor/libeditor/base/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,44 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +TEST_DIRS += ['tests'] 1.11 + 1.12 +UNIFIED_SOURCES += [ 1.13 + 'ChangeAttributeTxn.cpp', 1.14 + 'ChangeCSSInlineStyleTxn.cpp', 1.15 + 'CreateElementTxn.cpp', 1.16 + 'DeleteNodeTxn.cpp', 1.17 + 'DeleteRangeTxn.cpp', 1.18 + 'DeleteTextTxn.cpp', 1.19 + 'EditAggregateTxn.cpp', 1.20 + 'EditTxn.cpp', 1.21 + 'IMETextTxn.cpp', 1.22 + 'InsertElementTxn.cpp', 1.23 + 'InsertTextTxn.cpp', 1.24 + 'JoinElementTxn.cpp', 1.25 + 'nsEditor.cpp', 1.26 + 'nsEditorCommands.cpp', 1.27 + 'nsEditorController.cpp', 1.28 + 'nsEditorEventListener.cpp', 1.29 + 'nsEditorUtils.cpp', 1.30 + 'nsSelectionState.cpp', 1.31 + 'nsStyleSheetTxns.cpp', 1.32 + 'PlaceholderTxn.cpp', 1.33 + 'SetDocTitleTxn.cpp', 1.34 + 'SplitElementTxn.cpp', 1.35 +] 1.36 + 1.37 +FAIL_ON_WARNINGS = True 1.38 + 1.39 +LOCAL_INCLUDES += [ 1.40 + '../text', 1.41 + '/content/base/src', 1.42 + '/editor/txmgr/src', 1.43 + '/extensions/spellcheck/src', 1.44 + '/layout/style', 1.45 +] 1.46 + 1.47 +FINAL_LIBRARY = 'gklayout'