|
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/. |
|
6 |
|
7 PARALLEL_DIRS += ['builtin'] |
|
8 TEST_DIRS += ['test'] |
|
9 |
|
10 EXPORTS += [ |
|
11 'nsBindingManager.h', |
|
12 'nsXBLBinding.h', |
|
13 'nsXBLService.h', |
|
14 ] |
|
15 |
|
16 EXPORTS.mozilla.dom += [ |
|
17 'XBLChildrenElement.h', |
|
18 ] |
|
19 |
|
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 ] |
|
39 |
|
40 FAIL_ON_WARNINGS = True |
|
41 |
|
42 MSVC_ENABLE_PGO = True |
|
43 |
|
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 ] |
|
53 |
|
54 FINAL_LIBRARY = 'gklayout' |