Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
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 XPIDL_SOURCES += [
8 'nsITreeBoxObject.idl',
9 'nsITreeColumns.idl',
10 'nsITreeContentView.idl',
11 'nsITreeSelection.idl',
12 'nsITreeView.idl',
13 ]
15 XPIDL_MODULE = 'layout_xul_tree'
17 EXPORTS += [
18 'nsTreeColFrame.h',
19 'nsTreeUtils.h',
20 ]
22 UNIFIED_SOURCES += [
23 'nsTreeBodyFrame.cpp',
24 'nsTreeBoxObject.cpp',
25 'nsTreeColFrame.cpp',
26 'nsTreeColumns.cpp',
27 'nsTreeContentView.cpp',
28 'nsTreeImageListener.cpp',
29 'nsTreeSelection.cpp',
30 'nsTreeStyleCache.cpp',
31 'nsTreeUtils.cpp',
32 ]
34 FAIL_ON_WARNINGS = True
36 FINAL_LIBRARY = 'gklayout'
37 LOCAL_INCLUDES += [
38 '..',
39 '../../base',
40 '../../forms',
41 '../../generic',
42 '../../style',
43 '/content/base/src',
44 ]