Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 PARALLEL_DIRS += ['builtin']
8 TEST_DIRS += ['test']
10 EXPORTS += [
11 'nsBindingManager.h',
12 'nsXBLBinding.h',
13 'nsXBLService.h',
14 ]
16 EXPORTS.mozilla.dom += [
17 'XBLChildrenElement.h',
18 ]
20 UNIFIED_SOURCES += [
21 'nsBindingManager.cpp',
22 'nsXBLBinding.cpp',
23 'nsXBLContentSink.cpp',
24 'nsXBLDocumentInfo.cpp',
25 'nsXBLEventHandler.cpp',
26 'nsXBLProtoImpl.cpp',
27 'nsXBLProtoImplField.cpp',
28 'nsXBLProtoImplMethod.cpp',
29 'nsXBLProtoImplProperty.cpp',
30 'nsXBLPrototypeBinding.cpp',
31 'nsXBLPrototypeHandler.cpp',
32 'nsXBLPrototypeResources.cpp',
33 'nsXBLResourceLoader.cpp',
34 'nsXBLSerialize.cpp',
35 'nsXBLService.cpp',
36 'nsXBLWindowKeyHandler.cpp',
37 'XBLChildrenElement.cpp',
38 ]
40 FAIL_ON_WARNINGS = True
42 MSVC_ENABLE_PGO = True
44 LOCAL_INCLUDES += [
45 '/content/base/src',
46 '/content/html/document/src',
47 '/content/xml/document/src',
48 '/content/xul/content/src',
49 '/content/xul/document/src',
50 '/dom/base',
51 '/layout/style',
52 ]
54 FINAL_LIBRARY = 'gklayout'