michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'inICSSValueSearch.idl', michael@0: 'inIDeepTreeWalker.idl', michael@0: 'inIDOMUtils.idl', michael@0: 'inIDOMView.idl', michael@0: 'inIFlasher.idl', michael@0: 'inISearchObserver.idl', michael@0: 'inISearchProcess.idl', michael@0: 'nsIDOMFontFace.idl', michael@0: 'nsIDOMFontFaceList.idl', michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'inspector' michael@0: michael@0: EXPORTS += [ michael@0: 'nsFontFace.h', michael@0: 'nsFontFaceList.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'inCSSValueSearch.cpp', michael@0: 'inDeepTreeWalker.cpp', michael@0: 'inDOMUtils.cpp', michael@0: 'inFlasher.cpp', michael@0: 'inLayoutUtils.cpp', michael@0: 'inSearchLoop.cpp', michael@0: 'nsFontFace.cpp', michael@0: 'nsFontFaceList.cpp', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_XUL']: michael@0: UNIFIED_SOURCES += [ michael@0: 'inDOMView.cpp', michael@0: ] michael@0: michael@0: FAIL_ON_WARNINGS = True michael@0: michael@0: FINAL_LIBRARY = 'gklayout' michael@0: LOCAL_INCLUDES += [ michael@0: '../style', michael@0: '/content/base/src', michael@0: '/dom/xbl', michael@0: ] michael@0: michael@0: if CONFIG['ENABLE_TESTS']: michael@0: PARALLEL_DIRS += [ michael@0: 'tests', michael@0: 'tests/chrome', michael@0: ]