1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/xul/grid/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 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 +EXPORTS += [ 1.11 + 'nsGrid.h', 1.12 + 'nsGridCell.h', 1.13 + 'nsGridLayout2.h', 1.14 + 'nsGridRow.h', 1.15 + 'nsGridRowGroupLayout.h', 1.16 + 'nsGridRowLayout.h', 1.17 + 'nsGridRowLeafFrame.h', 1.18 + 'nsGridRowLeafLayout.h', 1.19 + 'nsIGridPart.h', 1.20 +] 1.21 + 1.22 +UNIFIED_SOURCES += [ 1.23 + 'nsGrid.cpp', 1.24 + 'nsGridCell.cpp', 1.25 + 'nsGridLayout2.cpp', 1.26 + 'nsGridRow.cpp', 1.27 + 'nsGridRowGroupFrame.cpp', 1.28 + 'nsGridRowGroupLayout.cpp', 1.29 + 'nsGridRowLayout.cpp', 1.30 + 'nsGridRowLeafFrame.cpp', 1.31 + 'nsGridRowLeafLayout.cpp', 1.32 +] 1.33 + 1.34 +FAIL_ON_WARNINGS = True 1.35 + 1.36 +FINAL_LIBRARY = 'gklayout' 1.37 +LOCAL_INCLUDES += [ 1.38 + '..', 1.39 + '../../forms', 1.40 + '../../generic', 1.41 + '../../style', 1.42 +] 1.43 +