2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:19 +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/.
|
|
|
|
|
2014-01-10 07:03:25 +04:00
|
|
|
PARALLEL_DIRS += ['builtin']
|
|
|
|
TEST_DIRS += ['test']
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'nsBindingManager.h',
|
|
|
|
'nsXBLBinding.h',
|
|
|
|
'nsXBLService.h',
|
|
|
|
]
|
|
|
|
|
2013-07-02 02:09:37 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'XBLChildrenElement.h',
|
|
|
|
]
|
|
|
|
|
2013-11-20 20:29:04 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'nsBindingManager.cpp',
|
|
|
|
'nsXBLBinding.cpp',
|
|
|
|
'nsXBLContentSink.cpp',
|
|
|
|
'nsXBLDocumentInfo.cpp',
|
|
|
|
'nsXBLEventHandler.cpp',
|
|
|
|
'nsXBLProtoImpl.cpp',
|
|
|
|
'nsXBLProtoImplField.cpp',
|
|
|
|
'nsXBLProtoImplMethod.cpp',
|
|
|
|
'nsXBLProtoImplProperty.cpp',
|
|
|
|
'nsXBLPrototypeBinding.cpp',
|
|
|
|
'nsXBLPrototypeHandler.cpp',
|
|
|
|
'nsXBLPrototypeResources.cpp',
|
|
|
|
'nsXBLResourceLoader.cpp',
|
|
|
|
'nsXBLSerialize.cpp',
|
|
|
|
'nsXBLService.cpp',
|
|
|
|
'nsXBLWindowKeyHandler.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'XBLChildrenElement.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-08-22 10:56:01 +04:00
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
|
2013-09-12 11:52:58 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/content/base/src',
|
|
|
|
'/content/html/document/src',
|
|
|
|
'/content/xml/document/src',
|
|
|
|
'/content/xul/content/src',
|
|
|
|
'/content/xul/document/src',
|
|
|
|
'/dom/base',
|
|
|
|
'/layout/style',
|
|
|
|
]
|
2013-11-19 06:47:14 +04:00
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|