1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/inspector/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 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 +XPIDL_SOURCES += [ 1.11 + 'inICSSValueSearch.idl', 1.12 + 'inIDeepTreeWalker.idl', 1.13 + 'inIDOMUtils.idl', 1.14 + 'inIDOMView.idl', 1.15 + 'inIFlasher.idl', 1.16 + 'inISearchObserver.idl', 1.17 + 'inISearchProcess.idl', 1.18 + 'nsIDOMFontFace.idl', 1.19 + 'nsIDOMFontFaceList.idl', 1.20 +] 1.21 + 1.22 +XPIDL_MODULE = 'inspector' 1.23 + 1.24 +EXPORTS += [ 1.25 + 'nsFontFace.h', 1.26 + 'nsFontFaceList.h', 1.27 +] 1.28 + 1.29 +UNIFIED_SOURCES += [ 1.30 + 'inCSSValueSearch.cpp', 1.31 + 'inDeepTreeWalker.cpp', 1.32 + 'inDOMUtils.cpp', 1.33 + 'inFlasher.cpp', 1.34 + 'inLayoutUtils.cpp', 1.35 + 'inSearchLoop.cpp', 1.36 + 'nsFontFace.cpp', 1.37 + 'nsFontFaceList.cpp', 1.38 +] 1.39 + 1.40 +if CONFIG['MOZ_XUL']: 1.41 + UNIFIED_SOURCES += [ 1.42 + 'inDOMView.cpp', 1.43 + ] 1.44 + 1.45 +FAIL_ON_WARNINGS = True 1.46 + 1.47 +FINAL_LIBRARY = 'gklayout' 1.48 +LOCAL_INCLUDES += [ 1.49 + '../style', 1.50 + '/content/base/src', 1.51 + '/dom/xbl', 1.52 +] 1.53 + 1.54 +if CONFIG['ENABLE_TESTS']: 1.55 + PARALLEL_DIRS += [ 1.56 + 'tests', 1.57 + 'tests/chrome', 1.58 + ]