1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xbl/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 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 +PARALLEL_DIRS += ['builtin'] 1.11 +TEST_DIRS += ['test'] 1.12 + 1.13 +EXPORTS += [ 1.14 + 'nsBindingManager.h', 1.15 + 'nsXBLBinding.h', 1.16 + 'nsXBLService.h', 1.17 +] 1.18 + 1.19 +EXPORTS.mozilla.dom += [ 1.20 + 'XBLChildrenElement.h', 1.21 +] 1.22 + 1.23 +UNIFIED_SOURCES += [ 1.24 + 'nsBindingManager.cpp', 1.25 + 'nsXBLBinding.cpp', 1.26 + 'nsXBLContentSink.cpp', 1.27 + 'nsXBLDocumentInfo.cpp', 1.28 + 'nsXBLEventHandler.cpp', 1.29 + 'nsXBLProtoImpl.cpp', 1.30 + 'nsXBLProtoImplField.cpp', 1.31 + 'nsXBLProtoImplMethod.cpp', 1.32 + 'nsXBLProtoImplProperty.cpp', 1.33 + 'nsXBLPrototypeBinding.cpp', 1.34 + 'nsXBLPrototypeHandler.cpp', 1.35 + 'nsXBLPrototypeResources.cpp', 1.36 + 'nsXBLResourceLoader.cpp', 1.37 + 'nsXBLSerialize.cpp', 1.38 + 'nsXBLService.cpp', 1.39 + 'nsXBLWindowKeyHandler.cpp', 1.40 + 'XBLChildrenElement.cpp', 1.41 +] 1.42 + 1.43 +FAIL_ON_WARNINGS = True 1.44 + 1.45 +MSVC_ENABLE_PGO = True 1.46 + 1.47 +LOCAL_INCLUDES += [ 1.48 + '/content/base/src', 1.49 + '/content/html/document/src', 1.50 + '/content/xml/document/src', 1.51 + '/content/xul/content/src', 1.52 + '/content/xul/document/src', 1.53 + '/dom/base', 1.54 + '/layout/style', 1.55 +] 1.56 + 1.57 +FINAL_LIBRARY = 'gklayout'