gecko-dev/layout/inspector/moz.build

56 строки
1.2 KiB
Plaintext
Исходник Обычный вид История

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Bug 945091. Part 1: Flatten inspector/public and inspector/src into inspector. r=glandium --HG-- rename : layout/inspector/src/inCSSValueSearch.cpp => layout/inspector/inCSSValueSearch.cpp rename : layout/inspector/src/inCSSValueSearch.h => layout/inspector/inCSSValueSearch.h rename : layout/inspector/src/inDOMUtils.cpp => layout/inspector/inDOMUtils.cpp rename : layout/inspector/src/inDOMUtils.h => layout/inspector/inDOMUtils.h rename : layout/inspector/src/inDOMView.cpp => layout/inspector/inDOMView.cpp rename : layout/inspector/src/inDOMView.h => layout/inspector/inDOMView.h rename : layout/inspector/src/inDeepTreeWalker.cpp => layout/inspector/inDeepTreeWalker.cpp rename : layout/inspector/src/inDeepTreeWalker.h => layout/inspector/inDeepTreeWalker.h rename : layout/inspector/src/inFlasher.cpp => layout/inspector/inFlasher.cpp rename : layout/inspector/src/inFlasher.h => layout/inspector/inFlasher.h rename : layout/inspector/public/inICSSValueSearch.idl => layout/inspector/inICSSValueSearch.idl rename : layout/inspector/public/inIDOMUtils.idl => layout/inspector/inIDOMUtils.idl rename : layout/inspector/public/inIDOMView.idl => layout/inspector/inIDOMView.idl rename : layout/inspector/public/inIDeepTreeWalker.idl => layout/inspector/inIDeepTreeWalker.idl rename : layout/inspector/public/inIFlasher.idl => layout/inspector/inIFlasher.idl rename : layout/inspector/public/inISearchObserver.idl => layout/inspector/inISearchObserver.idl rename : layout/inspector/public/inISearchProcess.idl => layout/inspector/inISearchProcess.idl rename : layout/inspector/src/inLayoutUtils.cpp => layout/inspector/inLayoutUtils.cpp rename : layout/inspector/src/inLayoutUtils.h => layout/inspector/inLayoutUtils.h rename : layout/inspector/src/inSearchLoop.cpp => layout/inspector/inSearchLoop.cpp rename : layout/inspector/src/inSearchLoop.h => layout/inspector/inSearchLoop.h rename : layout/inspector/src/moz.build => layout/inspector/moz.build rename : layout/inspector/src/nsFontFace.cpp => layout/inspector/nsFontFace.cpp rename : layout/inspector/src/nsFontFace.h => layout/inspector/nsFontFace.h rename : layout/inspector/src/nsFontFaceList.cpp => layout/inspector/nsFontFaceList.cpp rename : layout/inspector/src/nsFontFaceList.h => layout/inspector/nsFontFaceList.h rename : layout/inspector/public/nsIDOMFontFace.idl => layout/inspector/nsIDOMFontFace.idl rename : layout/inspector/public/nsIDOMFontFaceList.idl => layout/inspector/nsIDOMFontFaceList.idl
2013-12-04 05:04:23 +04:00
XPIDL_SOURCES += [
'inICSSValueSearch.idl',
'inIDeepTreeWalker.idl',
'inIDOMUtils.idl',
'inIDOMView.idl',
'inIFlasher.idl',
Bug 945091. Part 1: Flatten inspector/public and inspector/src into inspector. r=glandium --HG-- rename : layout/inspector/src/inCSSValueSearch.cpp => layout/inspector/inCSSValueSearch.cpp rename : layout/inspector/src/inCSSValueSearch.h => layout/inspector/inCSSValueSearch.h rename : layout/inspector/src/inDOMUtils.cpp => layout/inspector/inDOMUtils.cpp rename : layout/inspector/src/inDOMUtils.h => layout/inspector/inDOMUtils.h rename : layout/inspector/src/inDOMView.cpp => layout/inspector/inDOMView.cpp rename : layout/inspector/src/inDOMView.h => layout/inspector/inDOMView.h rename : layout/inspector/src/inDeepTreeWalker.cpp => layout/inspector/inDeepTreeWalker.cpp rename : layout/inspector/src/inDeepTreeWalker.h => layout/inspector/inDeepTreeWalker.h rename : layout/inspector/src/inFlasher.cpp => layout/inspector/inFlasher.cpp rename : layout/inspector/src/inFlasher.h => layout/inspector/inFlasher.h rename : layout/inspector/public/inICSSValueSearch.idl => layout/inspector/inICSSValueSearch.idl rename : layout/inspector/public/inIDOMUtils.idl => layout/inspector/inIDOMUtils.idl rename : layout/inspector/public/inIDOMView.idl => layout/inspector/inIDOMView.idl rename : layout/inspector/public/inIDeepTreeWalker.idl => layout/inspector/inIDeepTreeWalker.idl rename : layout/inspector/public/inIFlasher.idl => layout/inspector/inIFlasher.idl rename : layout/inspector/public/inISearchObserver.idl => layout/inspector/inISearchObserver.idl rename : layout/inspector/public/inISearchProcess.idl => layout/inspector/inISearchProcess.idl rename : layout/inspector/src/inLayoutUtils.cpp => layout/inspector/inLayoutUtils.cpp rename : layout/inspector/src/inLayoutUtils.h => layout/inspector/inLayoutUtils.h rename : layout/inspector/src/inSearchLoop.cpp => layout/inspector/inSearchLoop.cpp rename : layout/inspector/src/inSearchLoop.h => layout/inspector/inSearchLoop.h rename : layout/inspector/src/moz.build => layout/inspector/moz.build rename : layout/inspector/src/nsFontFace.cpp => layout/inspector/nsFontFace.cpp rename : layout/inspector/src/nsFontFace.h => layout/inspector/nsFontFace.h rename : layout/inspector/src/nsFontFaceList.cpp => layout/inspector/nsFontFaceList.cpp rename : layout/inspector/src/nsFontFaceList.h => layout/inspector/nsFontFaceList.h rename : layout/inspector/public/nsIDOMFontFace.idl => layout/inspector/nsIDOMFontFace.idl rename : layout/inspector/public/nsIDOMFontFaceList.idl => layout/inspector/nsIDOMFontFaceList.idl
2013-12-04 05:04:23 +04:00
'inISearchObserver.idl',
'inISearchProcess.idl',
'nsIDOMFontFace.idl',
'nsIDOMFontFaceList.idl',
]
XPIDL_MODULE = 'inspector'
EXPORTS += [
'nsFontFace.h',
'nsFontFaceList.h',
]
UNIFIED_SOURCES += [
'inCSSValueSearch.cpp',
'inDeepTreeWalker.cpp',
'inDOMUtils.cpp',
'inFlasher.cpp',
'inLayoutUtils.cpp',
'inSearchLoop.cpp',
'nsFontFace.cpp',
'nsFontFaceList.cpp',
]
if CONFIG['MOZ_XUL']:
UNIFIED_SOURCES += [
'inDOMView.cpp',
]
FAIL_ON_WARNINGS = True
FINAL_LIBRARY = 'gklayout'
LOCAL_INCLUDES += [
Bug 945091. Part 1: Flatten inspector/public and inspector/src into inspector. r=glandium --HG-- rename : layout/inspector/src/inCSSValueSearch.cpp => layout/inspector/inCSSValueSearch.cpp rename : layout/inspector/src/inCSSValueSearch.h => layout/inspector/inCSSValueSearch.h rename : layout/inspector/src/inDOMUtils.cpp => layout/inspector/inDOMUtils.cpp rename : layout/inspector/src/inDOMUtils.h => layout/inspector/inDOMUtils.h rename : layout/inspector/src/inDOMView.cpp => layout/inspector/inDOMView.cpp rename : layout/inspector/src/inDOMView.h => layout/inspector/inDOMView.h rename : layout/inspector/src/inDeepTreeWalker.cpp => layout/inspector/inDeepTreeWalker.cpp rename : layout/inspector/src/inDeepTreeWalker.h => layout/inspector/inDeepTreeWalker.h rename : layout/inspector/src/inFlasher.cpp => layout/inspector/inFlasher.cpp rename : layout/inspector/src/inFlasher.h => layout/inspector/inFlasher.h rename : layout/inspector/public/inICSSValueSearch.idl => layout/inspector/inICSSValueSearch.idl rename : layout/inspector/public/inIDOMUtils.idl => layout/inspector/inIDOMUtils.idl rename : layout/inspector/public/inIDOMView.idl => layout/inspector/inIDOMView.idl rename : layout/inspector/public/inIDeepTreeWalker.idl => layout/inspector/inIDeepTreeWalker.idl rename : layout/inspector/public/inIFlasher.idl => layout/inspector/inIFlasher.idl rename : layout/inspector/public/inISearchObserver.idl => layout/inspector/inISearchObserver.idl rename : layout/inspector/public/inISearchProcess.idl => layout/inspector/inISearchProcess.idl rename : layout/inspector/src/inLayoutUtils.cpp => layout/inspector/inLayoutUtils.cpp rename : layout/inspector/src/inLayoutUtils.h => layout/inspector/inLayoutUtils.h rename : layout/inspector/src/inSearchLoop.cpp => layout/inspector/inSearchLoop.cpp rename : layout/inspector/src/inSearchLoop.h => layout/inspector/inSearchLoop.h rename : layout/inspector/src/moz.build => layout/inspector/moz.build rename : layout/inspector/src/nsFontFace.cpp => layout/inspector/nsFontFace.cpp rename : layout/inspector/src/nsFontFace.h => layout/inspector/nsFontFace.h rename : layout/inspector/src/nsFontFaceList.cpp => layout/inspector/nsFontFaceList.cpp rename : layout/inspector/src/nsFontFaceList.h => layout/inspector/nsFontFaceList.h rename : layout/inspector/public/nsIDOMFontFace.idl => layout/inspector/nsIDOMFontFace.idl rename : layout/inspector/public/nsIDOMFontFaceList.idl => layout/inspector/nsIDOMFontFaceList.idl
2013-12-04 05:04:23 +04:00
'../style',
'/content/base/src',
Bug 946065. Part 4: Move content/xbl to dom/ and flatten away 'src' directory. r=Ms2ger --HG-- rename : content/xbl/src/XBLChildrenElement.cpp => dom/xbl/XBLChildrenElement.cpp rename : content/xbl/src/XBLChildrenElement.h => dom/xbl/XBLChildrenElement.h rename : content/xbl/builtin/android/jar.mn => dom/xbl/builtin/android/jar.mn rename : content/xbl/builtin/android/moz.build => dom/xbl/builtin/android/moz.build rename : content/xbl/builtin/android/platformHTMLBindings.xml => dom/xbl/builtin/android/platformHTMLBindings.xml rename : content/xbl/builtin/browser-base.inc => dom/xbl/builtin/browser-base.inc rename : content/xbl/builtin/editor-base.inc => dom/xbl/builtin/editor-base.inc rename : content/xbl/builtin/emacs/jar.mn => dom/xbl/builtin/emacs/jar.mn rename : content/xbl/builtin/emacs/moz.build => dom/xbl/builtin/emacs/moz.build rename : content/xbl/builtin/emacs/platformHTMLBindings.xml => dom/xbl/builtin/emacs/platformHTMLBindings.xml rename : content/xbl/builtin/input-fields-base.inc => dom/xbl/builtin/input-fields-base.inc rename : content/xbl/builtin/mac/jar.mn => dom/xbl/builtin/mac/jar.mn rename : content/xbl/builtin/mac/moz.build => dom/xbl/builtin/mac/moz.build rename : content/xbl/builtin/mac/platformHTMLBindings.xml => dom/xbl/builtin/mac/platformHTMLBindings.xml rename : content/xbl/builtin/moz.build => dom/xbl/builtin/moz.build rename : content/xbl/builtin/textareas-base.inc => dom/xbl/builtin/textareas-base.inc rename : content/xbl/builtin/unix/jar.mn => dom/xbl/builtin/unix/jar.mn rename : content/xbl/builtin/unix/moz.build => dom/xbl/builtin/unix/moz.build rename : content/xbl/builtin/unix/platformHTMLBindings.xml => dom/xbl/builtin/unix/platformHTMLBindings.xml rename : content/xbl/builtin/win/jar.mn => dom/xbl/builtin/win/jar.mn rename : content/xbl/builtin/win/moz.build => dom/xbl/builtin/win/moz.build rename : content/xbl/builtin/win/platformHTMLBindings.xml => dom/xbl/builtin/win/platformHTMLBindings.xml rename : content/xbl/crashtests/205735-1.xhtml => dom/xbl/crashtests/205735-1.xhtml rename : content/xbl/crashtests/223799-1.xul => dom/xbl/crashtests/223799-1.xul rename : content/xbl/crashtests/226744-1.xhtml => dom/xbl/crashtests/226744-1.xhtml rename : content/xbl/crashtests/232095-1.xul => dom/xbl/crashtests/232095-1.xul rename : content/xbl/crashtests/277523-1.xhtml => dom/xbl/crashtests/277523-1.xhtml rename : content/xbl/crashtests/277950-1.xhtml => dom/xbl/crashtests/277950-1.xhtml rename : content/xbl/crashtests/336744-1-inner.html => dom/xbl/crashtests/336744-1-inner.html rename : content/xbl/crashtests/336744-1.html => dom/xbl/crashtests/336744-1.html rename : content/xbl/crashtests/336960-1-inner.xhtml => dom/xbl/crashtests/336960-1-inner.xhtml rename : content/xbl/crashtests/336960-1.html => dom/xbl/crashtests/336960-1.html rename : content/xbl/crashtests/342954-1.xhtml => dom/xbl/crashtests/342954-1.xhtml rename : content/xbl/crashtests/342954-2-xbl.xml => dom/xbl/crashtests/342954-2-xbl.xml rename : content/xbl/crashtests/342954-2.xhtml => dom/xbl/crashtests/342954-2.xhtml rename : content/xbl/crashtests/368276-1.xhtml => dom/xbl/crashtests/368276-1.xhtml rename : content/xbl/crashtests/368641-1.xhtml => dom/xbl/crashtests/368641-1.xhtml rename : content/xbl/crashtests/378521-1.xhtml => dom/xbl/crashtests/378521-1.xhtml rename : content/xbl/crashtests/382376-1.xhtml => dom/xbl/crashtests/382376-1.xhtml rename : content/xbl/crashtests/382376-2.xhtml => dom/xbl/crashtests/382376-2.xhtml rename : content/xbl/crashtests/397596-1.xhtml => dom/xbl/crashtests/397596-1.xhtml rename : content/xbl/crashtests/404125-1.xhtml => dom/xbl/crashtests/404125-1.xhtml rename : content/xbl/crashtests/406900-1.xul => dom/xbl/crashtests/406900-1.xul rename : content/xbl/crashtests/406904-1.xhtml => dom/xbl/crashtests/406904-1.xhtml rename : content/xbl/crashtests/406904-2.xhtml => dom/xbl/crashtests/406904-2.xhtml rename : content/xbl/crashtests/415192-1.xul => dom/xbl/crashtests/415192-1.xul rename : content/xbl/crashtests/415301-1.xul => dom/xbl/crashtests/415301-1.xul rename : content/xbl/crashtests/418133-1.xhtml => dom/xbl/crashtests/418133-1.xhtml rename : content/xbl/crashtests/420233-1.xhtml => dom/xbl/crashtests/420233-1.xhtml rename : content/xbl/crashtests/421997-1.xhtml => dom/xbl/crashtests/421997-1.xhtml rename : content/xbl/crashtests/432813-1-xbl.xml => dom/xbl/crashtests/432813-1-xbl.xml rename : content/xbl/crashtests/432813-1.xhtml => dom/xbl/crashtests/432813-1.xhtml rename : content/xbl/crashtests/454820-1.html => dom/xbl/crashtests/454820-1.html rename : content/xbl/crashtests/460665-1.xhtml => dom/xbl/crashtests/460665-1.xhtml rename : content/xbl/crashtests/463511-1.xhtml => dom/xbl/crashtests/463511-1.xhtml rename : content/xbl/crashtests/464863-1.xhtml => dom/xbl/crashtests/464863-1.xhtml rename : content/xbl/crashtests/472260-1.xhtml => dom/xbl/crashtests/472260-1.xhtml rename : content/xbl/crashtests/477878-1.html => dom/xbl/crashtests/477878-1.html rename : content/xbl/crashtests/492978-1.xul => dom/xbl/crashtests/492978-1.xul rename : content/xbl/crashtests/493123-1.xhtml => dom/xbl/crashtests/493123-1.xhtml rename : content/xbl/crashtests/495354-1.xhtml => dom/xbl/crashtests/495354-1.xhtml rename : content/xbl/crashtests/507628-1.xhtml => dom/xbl/crashtests/507628-1.xhtml rename : content/xbl/crashtests/507991-1.xhtml => dom/xbl/crashtests/507991-1.xhtml rename : content/xbl/crashtests/830614-1.xul => dom/xbl/crashtests/830614-1.xul rename : content/xbl/crashtests/895805-1.xhtml => dom/xbl/crashtests/895805-1.xhtml rename : content/xbl/crashtests/crashtests.list => dom/xbl/crashtests/crashtests.list rename : content/xbl/crashtests/set-field-bad-this.xhtml => dom/xbl/crashtests/set-field-bad-this.xhtml rename : content/xbl/src/moz.build => dom/xbl/moz.build rename : content/xbl/src/nsBindingManager.cpp => dom/xbl/nsBindingManager.cpp rename : content/xbl/src/nsBindingManager.h => dom/xbl/nsBindingManager.h rename : content/xbl/src/nsXBLBinding.cpp => dom/xbl/nsXBLBinding.cpp rename : content/xbl/src/nsXBLBinding.h => dom/xbl/nsXBLBinding.h rename : content/xbl/src/nsXBLContentSink.cpp => dom/xbl/nsXBLContentSink.cpp rename : content/xbl/src/nsXBLContentSink.h => dom/xbl/nsXBLContentSink.h rename : content/xbl/src/nsXBLDocumentInfo.cpp => dom/xbl/nsXBLDocumentInfo.cpp rename : content/xbl/src/nsXBLDocumentInfo.h => dom/xbl/nsXBLDocumentInfo.h rename : content/xbl/src/nsXBLEventHandler.cpp => dom/xbl/nsXBLEventHandler.cpp rename : content/xbl/src/nsXBLEventHandler.h => dom/xbl/nsXBLEventHandler.h rename : content/xbl/src/nsXBLMaybeCompiled.h => dom/xbl/nsXBLMaybeCompiled.h rename : content/xbl/src/nsXBLProtoImpl.cpp => dom/xbl/nsXBLProtoImpl.cpp rename : content/xbl/src/nsXBLProtoImpl.h => dom/xbl/nsXBLProtoImpl.h rename : content/xbl/src/nsXBLProtoImplField.cpp => dom/xbl/nsXBLProtoImplField.cpp rename : content/xbl/src/nsXBLProtoImplField.h => dom/xbl/nsXBLProtoImplField.h rename : content/xbl/src/nsXBLProtoImplMember.h => dom/xbl/nsXBLProtoImplMember.h rename : content/xbl/src/nsXBLProtoImplMethod.cpp => dom/xbl/nsXBLProtoImplMethod.cpp rename : content/xbl/src/nsXBLProtoImplMethod.h => dom/xbl/nsXBLProtoImplMethod.h rename : content/xbl/src/nsXBLProtoImplProperty.cpp => dom/xbl/nsXBLProtoImplProperty.cpp rename : content/xbl/src/nsXBLProtoImplProperty.h => dom/xbl/nsXBLProtoImplProperty.h rename : content/xbl/src/nsXBLPrototypeBinding.cpp => dom/xbl/nsXBLPrototypeBinding.cpp rename : content/xbl/src/nsXBLPrototypeBinding.h => dom/xbl/nsXBLPrototypeBinding.h rename : content/xbl/src/nsXBLPrototypeHandler.cpp => dom/xbl/nsXBLPrototypeHandler.cpp rename : content/xbl/src/nsXBLPrototypeHandler.h => dom/xbl/nsXBLPrototypeHandler.h rename : content/xbl/src/nsXBLPrototypeResources.cpp => dom/xbl/nsXBLPrototypeResources.cpp rename : content/xbl/src/nsXBLPrototypeResources.h => dom/xbl/nsXBLPrototypeResources.h rename : content/xbl/src/nsXBLResourceLoader.cpp => dom/xbl/nsXBLResourceLoader.cpp rename : content/xbl/src/nsXBLResourceLoader.h => dom/xbl/nsXBLResourceLoader.h rename : content/xbl/src/nsXBLSerialize.cpp => dom/xbl/nsXBLSerialize.cpp rename : content/xbl/src/nsXBLSerialize.h => dom/xbl/nsXBLSerialize.h rename : content/xbl/src/nsXBLService.cpp => dom/xbl/nsXBLService.cpp rename : content/xbl/src/nsXBLService.h => dom/xbl/nsXBLService.h rename : content/xbl/src/nsXBLWindowKeyHandler.cpp => dom/xbl/nsXBLWindowKeyHandler.cpp rename : content/xbl/src/nsXBLWindowKeyHandler.h => dom/xbl/nsXBLWindowKeyHandler.h rename : content/xbl/test/bug310107-resource.xhtml => dom/xbl/test/bug310107-resource.xhtml rename : content/xbl/test/chrome.ini => dom/xbl/test/chrome.ini rename : content/xbl/test/file_bug372769.xhtml => dom/xbl/test/file_bug372769.xhtml rename : content/xbl/test/file_bug379959_cross.html => dom/xbl/test/file_bug379959_cross.html rename : content/xbl/test/file_bug379959_data.html => dom/xbl/test/file_bug379959_data.html rename : content/xbl/test/file_bug379959_xbl.xml => dom/xbl/test/file_bug379959_xbl.xml rename : content/xbl/test/file_bug397934.xhtml => dom/xbl/test/file_bug397934.xhtml rename : content/xbl/test/file_bug481558.xbl => dom/xbl/test/file_bug481558.xbl rename : content/xbl/test/file_bug481558css.sjs => dom/xbl/test/file_bug481558css.sjs rename : content/xbl/test/file_bug591198_inner.html => dom/xbl/test/file_bug591198_inner.html rename : content/xbl/test/file_bug591198_xbl.xml => dom/xbl/test/file_bug591198_xbl.xml rename : content/xbl/test/file_bug821850.xhtml => dom/xbl/test/file_bug821850.xhtml rename : content/xbl/test/file_bug844783.xhtml => dom/xbl/test/file_bug844783.xhtml rename : content/xbl/test/file_bug944407.html => dom/xbl/test/file_bug944407.html rename : content/xbl/test/file_bug944407.xml => dom/xbl/test/file_bug944407.xml rename : content/xbl/test/file_bug950909.html => dom/xbl/test/file_bug950909.html rename : content/xbl/test/file_bug950909.xml => dom/xbl/test/file_bug950909.xml rename : content/xbl/test/mochitest.ini => dom/xbl/test/mochitest.ini rename : content/xbl/test/moz.build => dom/xbl/test/moz.build rename : content/xbl/test/test_bug310107.html => dom/xbl/test/test_bug310107.html rename : content/xbl/test/test_bug366770.html => dom/xbl/test/test_bug366770.html rename : content/xbl/test/test_bug371724.xhtml => dom/xbl/test/test_bug371724.xhtml rename : content/xbl/test/test_bug372769.html => dom/xbl/test/test_bug372769.html rename : content/xbl/test/test_bug378518.xul => dom/xbl/test/test_bug378518.xul rename : content/xbl/test/test_bug378866.xhtml => dom/xbl/test/test_bug378866.xhtml rename : content/xbl/test/test_bug379959.html => dom/xbl/test/test_bug379959.html rename : content/xbl/test/test_bug389322.xhtml => dom/xbl/test/test_bug389322.xhtml rename : content/xbl/test/test_bug397934.html => dom/xbl/test/test_bug397934.html rename : content/xbl/test/test_bug398135.xul => dom/xbl/test/test_bug398135.xul rename : content/xbl/test/test_bug398492.xul => dom/xbl/test/test_bug398492.xul rename : content/xbl/test/test_bug400705.xhtml => dom/xbl/test/test_bug400705.xhtml rename : content/xbl/test/test_bug401907.xhtml => dom/xbl/test/test_bug401907.xhtml rename : content/xbl/test/test_bug403162.xhtml => dom/xbl/test/test_bug403162.xhtml rename : content/xbl/test/test_bug468210.xhtml => dom/xbl/test/test_bug468210.xhtml rename : content/xbl/test/test_bug481558.html => dom/xbl/test/test_bug481558.html rename : content/xbl/test/test_bug526178.xhtml => dom/xbl/test/test_bug526178.xhtml rename : content/xbl/test/test_bug542406.xhtml => dom/xbl/test/test_bug542406.xhtml rename : content/xbl/test/test_bug591198.html => dom/xbl/test/test_bug591198.html rename : content/xbl/test/test_bug639338.xhtml => dom/xbl/test/test_bug639338.xhtml rename : content/xbl/test/test_bug721452.xul => dom/xbl/test/test_bug721452.xul rename : content/xbl/test/test_bug723676.xul => dom/xbl/test/test_bug723676.xul rename : content/xbl/test/test_bug772966.xul => dom/xbl/test/test_bug772966.xul rename : content/xbl/test/test_bug790265.xhtml => dom/xbl/test/test_bug790265.xhtml rename : content/xbl/test/test_bug821850.html => dom/xbl/test/test_bug821850.html rename : content/xbl/test/test_bug844783.html => dom/xbl/test/test_bug844783.html rename : content/xbl/test/test_bug944407.xul => dom/xbl/test/test_bug944407.xul rename : content/xbl/test/test_bug950909.xul => dom/xbl/test/test_bug950909.xul extra : rebase_source : 44ab05088f70826c70dee3af30221e628ec1e4e8
2014-01-10 07:03:25 +04:00
'/dom/xbl',
]
Bug 945091. Part 1: Flatten inspector/public and inspector/src into inspector. r=glandium --HG-- rename : layout/inspector/src/inCSSValueSearch.cpp => layout/inspector/inCSSValueSearch.cpp rename : layout/inspector/src/inCSSValueSearch.h => layout/inspector/inCSSValueSearch.h rename : layout/inspector/src/inDOMUtils.cpp => layout/inspector/inDOMUtils.cpp rename : layout/inspector/src/inDOMUtils.h => layout/inspector/inDOMUtils.h rename : layout/inspector/src/inDOMView.cpp => layout/inspector/inDOMView.cpp rename : layout/inspector/src/inDOMView.h => layout/inspector/inDOMView.h rename : layout/inspector/src/inDeepTreeWalker.cpp => layout/inspector/inDeepTreeWalker.cpp rename : layout/inspector/src/inDeepTreeWalker.h => layout/inspector/inDeepTreeWalker.h rename : layout/inspector/src/inFlasher.cpp => layout/inspector/inFlasher.cpp rename : layout/inspector/src/inFlasher.h => layout/inspector/inFlasher.h rename : layout/inspector/public/inICSSValueSearch.idl => layout/inspector/inICSSValueSearch.idl rename : layout/inspector/public/inIDOMUtils.idl => layout/inspector/inIDOMUtils.idl rename : layout/inspector/public/inIDOMView.idl => layout/inspector/inIDOMView.idl rename : layout/inspector/public/inIDeepTreeWalker.idl => layout/inspector/inIDeepTreeWalker.idl rename : layout/inspector/public/inIFlasher.idl => layout/inspector/inIFlasher.idl rename : layout/inspector/public/inISearchObserver.idl => layout/inspector/inISearchObserver.idl rename : layout/inspector/public/inISearchProcess.idl => layout/inspector/inISearchProcess.idl rename : layout/inspector/src/inLayoutUtils.cpp => layout/inspector/inLayoutUtils.cpp rename : layout/inspector/src/inLayoutUtils.h => layout/inspector/inLayoutUtils.h rename : layout/inspector/src/inSearchLoop.cpp => layout/inspector/inSearchLoop.cpp rename : layout/inspector/src/inSearchLoop.h => layout/inspector/inSearchLoop.h rename : layout/inspector/src/moz.build => layout/inspector/moz.build rename : layout/inspector/src/nsFontFace.cpp => layout/inspector/nsFontFace.cpp rename : layout/inspector/src/nsFontFace.h => layout/inspector/nsFontFace.h rename : layout/inspector/src/nsFontFaceList.cpp => layout/inspector/nsFontFaceList.cpp rename : layout/inspector/src/nsFontFaceList.h => layout/inspector/nsFontFaceList.h rename : layout/inspector/public/nsIDOMFontFace.idl => layout/inspector/nsIDOMFontFace.idl rename : layout/inspector/public/nsIDOMFontFaceList.idl => layout/inspector/nsIDOMFontFaceList.idl
2013-12-04 05:04:23 +04:00
if CONFIG['ENABLE_TESTS']:
PARALLEL_DIRS += [
'tests',
'tests/chrome',
]