Bug 784841 - Part 18g: Convert /content; r=glandium
This commit is contained in:
@@ -1,4 +1,3 @@
|
|||||||
#
|
|
||||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
# 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
|
# 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/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
@@ -11,14 +10,5 @@ VPATH = @srcdir@
|
|||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
MODULE = content
|
MODULE = content
|
||||||
PARALLEL_DIRS = base canvas events html mathml/content/src smil svg xml xul xbl xslt
|
|
||||||
|
|
||||||
ifdef MOZ_MEDIA
|
|
||||||
PARALLEL_DIRS += media
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef ENABLE_TESTS
|
|
||||||
TOOL_DIRS += test
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
@@ -9,12 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
ifdef ENABLE_TESTS
|
|
||||||
TOOL_DIRS += test
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/base/moz.build
Normal file
7
content/base/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_TOOL_DIRS += ['test']
|
||||||
5
content/base/public/moz.build
Normal file
5
content/base/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/base/src/moz.build
Normal file
5
content/base/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -11,11 +11,6 @@ relativesrcdir = @relativesrcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
DIRS += \
|
|
||||||
chrome \
|
|
||||||
websocket_hybi \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
MODULE = content
|
MODULE = content
|
||||||
|
|
||||||
CPP_UNIT_TESTS = \
|
CPP_UNIT_TESTS = \
|
||||||
|
|||||||
5
content/base/test/chrome/moz.build
Normal file
5
content/base/test/chrome/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
6
content/base/test/moz.build
Normal file
6
content/base/test/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['chrome', 'websocket_hybi']
|
||||||
5
content/base/test/websocket_hybi/moz.build
Normal file
5
content/base/test/websocket_hybi/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
#
|
|
||||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
# 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
|
# 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/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
@@ -10,13 +9,5 @@ VPATH = @srcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
ifdef ENABLE_TESTS
|
|
||||||
TOOL_DIRS += compiledtest
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
5
content/canvas/compiledtest/moz.build
Normal file
5
content/canvas/compiledtest/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
9
content/canvas/moz.build
Normal file
9
content/canvas/moz.build
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
|
|
||||||
|
TEST_TOOL_DIRS += ['compiledtest']
|
||||||
5
content/canvas/public/moz.build
Normal file
5
content/canvas/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/canvas/src/moz.build
Normal file
5
content/canvas/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -8,7 +8,6 @@ topsrcdir = @top_srcdir@
|
|||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
relativesrcdir = @relativesrcdir@
|
relativesrcdir = @relativesrcdir@
|
||||||
DIRS += webgl crossorigin chrome
|
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
MOCHITEST_FILES = \
|
MOCHITEST_FILES = \
|
||||||
|
|||||||
5
content/canvas/test/chrome/moz.build
Normal file
5
content/canvas/test/chrome/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/canvas/test/crossorigin/moz.build
Normal file
5
content/canvas/test/crossorigin/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
7
content/canvas/test/moz.build
Normal file
7
content/canvas/test/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
DIRS += ['webgl', 'crossorigin', 'chrome']
|
||||||
|
|
||||||
5
content/canvas/test/webgl/moz.build
Normal file
5
content/canvas/test/webgl/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,10 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/events/moz.build
Normal file
7
content/events/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/events/public/moz.build
Normal file
5
content/events/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/events/src/moz.build
Normal file
5
content/events/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/events/test/moz.build
Normal file
5
content/events/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,7 +9,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = content document
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
@@ -9,10 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/html/content/moz.build
Normal file
7
content/html/content/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/html/content/public/moz.build
Normal file
5
content/html/content/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/html/content/src/moz.build
Normal file
5
content/html/content/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -11,18 +11,6 @@ relativesrcdir = @relativesrcdir@
|
|||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
# This extra subdirectory is needed due to the nature of this test.
|
|
||||||
# With the bug, the test loads the base URL of the bug649134/file_*.sjs
|
|
||||||
# files, and the mochitest server responds with the contents of index.html if
|
|
||||||
# it exists in that case, which we use to detect failure.
|
|
||||||
# We can't have index.html in this directory because it would prevent
|
|
||||||
# running the tests here.
|
|
||||||
TEST_DIRS += bug649134
|
|
||||||
|
|
||||||
# For form-related test suite.
|
|
||||||
TEST_DIRS += forms
|
|
||||||
|
|
||||||
|
|
||||||
MOCHITEST_FILES = \
|
MOCHITEST_FILES = \
|
||||||
test_hidden.html \
|
test_hidden.html \
|
||||||
test_bug589.html \
|
test_bug589.html \
|
||||||
|
|||||||
5
content/html/content/test/bug649134/moz.build
Normal file
5
content/html/content/test/bug649134/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/html/content/test/forms/moz.build
Normal file
5
content/html/content/test/forms/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
14
content/html/content/test/moz.build
Normal file
14
content/html/content/test/moz.build
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
# This extra subdirectory is needed due to the nature of this test.
|
||||||
|
# With the bug, the test loads the base URL of the bug649134/file_*.sjs
|
||||||
|
# files, and the mochitest server responds with the contents of index.html if
|
||||||
|
# it exists in that case, which we use to detect failure.
|
||||||
|
# We can't have index.html in this directory because it would prevent
|
||||||
|
# running the tests here.
|
||||||
|
TEST_DIRS += ['bug649134']
|
||||||
|
|
||||||
|
TEST_DIRS += ['forms']
|
||||||
@@ -9,10 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/html/document/moz.build
Normal file
7
content/html/document/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/html/document/public/moz.build
Normal file
5
content/html/document/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/html/document/src/moz.build
Normal file
5
content/html/document/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/html/document/test/moz.build
Normal file
5
content/html/document/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
6
content/html/moz.build
Normal file
6
content/html/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['content', 'document']
|
||||||
5
content/mathml/content/src/moz.build
Normal file
5
content/mathml/content/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -77,48 +77,6 @@ CPPSRCS += \
|
|||||||
$(NULL)
|
$(NULL)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PARALLEL_DIRS += webaudio
|
|
||||||
|
|
||||||
ifdef MOZ_RAW
|
|
||||||
PARALLEL_DIRS += raw
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_OGG
|
|
||||||
PARALLEL_DIRS += ogg
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_WAVE
|
|
||||||
PARALLEL_DIRS += wave
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_WEBM
|
|
||||||
PARALLEL_DIRS += webm
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_GSTREAMER
|
|
||||||
PARALLEL_DIRS += gstreamer
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_DASH
|
|
||||||
PARALLEL_DIRS += dash
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_MEDIA_PLUGINS
|
|
||||||
PARALLEL_DIRS += plugins
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef MOZ_WMF
|
|
||||||
PARALLEL_DIRS += wmf
|
|
||||||
endif
|
|
||||||
|
|
||||||
PARALLEL_DIRS += webrtc
|
|
||||||
|
|
||||||
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
||||||
PARALLEL_DIRS += omx
|
|
||||||
endif
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
FORCE_STATIC_LIB = 1
|
FORCE_STATIC_LIB = 1
|
||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|||||||
5
content/media/dash/moz.build
Normal file
5
content/media/dash/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/gstreamer/moz.build
Normal file
5
content/media/gstreamer/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
38
content/media/moz.build
Normal file
38
content/media/moz.build
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['webaudio']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_RAW']:
|
||||||
|
PARALLEL_DIRS += ['raw']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_OGG']:
|
||||||
|
PARALLEL_DIRS += ['ogg']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_WAVE']:
|
||||||
|
PARALLEL_DIRS += ['wave']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_WEBM']:
|
||||||
|
PARALLEL_DIRS += ['webm']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_GSTREAMER']:
|
||||||
|
PARALLEL_DIRS += ['gstreamer']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_DASH']:
|
||||||
|
PARALLEL_DIRS += ['dash']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_MEDIA_PLUGINS']:
|
||||||
|
PARALLEL_DIRS += ['plugins']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_WMF']:
|
||||||
|
PARALLEL_DIRS += ['wmf']
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['webrtc']
|
||||||
|
|
||||||
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
||||||
|
PARALLEL_DIRS += ['omx']
|
||||||
|
|
||||||
|
TEST_DIRS += ['test']
|
||||||
|
|
||||||
5
content/media/ogg/moz.build
Normal file
5
content/media/ogg/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/omx/moz.build
Normal file
5
content/media/omx/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/plugins/moz.build
Normal file
5
content/media/plugins/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/raw/moz.build
Normal file
5
content/media/raw/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/test/moz.build
Normal file
5
content/media/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/wave/moz.build
Normal file
5
content/media/wave/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -56,12 +56,6 @@ EXPORTS := \
|
|||||||
MediaBufferDecoder.h \
|
MediaBufferDecoder.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
PARALLEL_DIRS := test
|
|
||||||
|
|
||||||
ifdef ENABLE_TESTS
|
|
||||||
TOOL_DIRS += compiledtest
|
|
||||||
endif
|
|
||||||
|
|
||||||
FORCE_STATIC_LIB := 1
|
FORCE_STATIC_LIB := 1
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
5
content/media/webaudio/compiledtest/moz.build
Normal file
5
content/media/webaudio/compiledtest/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
8
content/media/webaudio/moz.build
Normal file
8
content/media/webaudio/moz.build
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['test']
|
||||||
|
|
||||||
|
TEST_TOOL_DIRS += ['compiledtest']
|
||||||
4
content/media/webaudio/test/moz.build
Normal file
4
content/media/webaudio/test/moz.build
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# 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/.
|
||||||
5
content/media/webm/moz.build
Normal file
5
content/media/webm/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/webrtc/moz.build
Normal file
5
content/media/webrtc/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/media/wmf/moz.build
Normal file
5
content/media/wmf/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
24
content/moz.build
Normal file
24
content/moz.build
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += [
|
||||||
|
'base',
|
||||||
|
'canvas',
|
||||||
|
'events',
|
||||||
|
'html',
|
||||||
|
'mathml/content/src',
|
||||||
|
'smil',
|
||||||
|
'svg',
|
||||||
|
'xml',
|
||||||
|
'xul',
|
||||||
|
'xbl',
|
||||||
|
'xslt',
|
||||||
|
]
|
||||||
|
|
||||||
|
if CONFIG['MOZ_MEDIA']:
|
||||||
|
PARALLEL_DIRS += ['media']
|
||||||
|
|
||||||
|
TEST_TOOL_DIRS += ['test']
|
||||||
|
|
||||||
@@ -75,10 +75,6 @@ include $(topsrcdir)/config/config.mk
|
|||||||
# we don't want the shared lib, but we want to force the creation of a static lib.
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
||||||
FORCE_STATIC_LIB = 1
|
FORCE_STATIC_LIB = 1
|
||||||
|
|
||||||
ifdef ENABLE_TESTS
|
|
||||||
TOOL_DIRS += test
|
|
||||||
endif # ENABLE_TESTS
|
|
||||||
|
|
||||||
INCLUDES += \
|
INCLUDES += \
|
||||||
-I$(srcdir)/../base/src \
|
-I$(srcdir)/../base/src \
|
||||||
-I$(srcdir)/../../layout/style \
|
-I$(srcdir)/../../layout/style \
|
||||||
|
|||||||
6
content/smil/moz.build
Normal file
6
content/smil/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
TEST_TOOL_DIRS += ['test']
|
||||||
5
content/smil/test/moz.build
Normal file
5
content/smil/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,7 +9,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = document/src content
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
@@ -10,10 +10,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/svg/content/moz.build
Normal file
7
content/svg/content/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/svg/content/src/moz.build
Normal file
5
content/svg/content/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/svg/content/test/moz.build
Normal file
5
content/svg/content/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/svg/document/src/moz.build
Normal file
5
content/svg/document/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
6
content/svg/moz.build
Normal file
6
content/svg/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['document/src', 'content']
|
||||||
5
content/test/moz.build
Normal file
5
content/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,9 +9,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = src builtin
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
@@ -9,19 +9,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
ifneq (,$(filter OS2 WINNT,$(OS_ARCH)))
|
|
||||||
DIRS = win
|
|
||||||
else
|
|
||||||
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
||||||
DIRS = mac
|
|
||||||
else
|
|
||||||
ifneq (,$(filter qt gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
||||||
DIRS = unix
|
|
||||||
else
|
|
||||||
DIRS = emacs
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
5
content/xbl/builtin/emacs/moz.build
Normal file
5
content/xbl/builtin/emacs/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xbl/builtin/mac/moz.build
Normal file
5
content/xbl/builtin/mac/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
14
content/xbl/builtin/moz.build
Normal file
14
content/xbl/builtin/moz.build
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
if CONFIG['OS_ARCH'] in ('OS2', 'WINNT'):
|
||||||
|
DIRS += ['win']
|
||||||
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||||
|
DIRS += ['mac']
|
||||||
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] in ('qt', 'gtk2'):
|
||||||
|
DIRS += ['unix']
|
||||||
|
else:
|
||||||
|
DIRS += ['emacs']
|
||||||
|
|
||||||
5
content/xbl/builtin/unix/moz.build
Normal file
5
content/xbl/builtin/unix/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xbl/builtin/win/moz.build
Normal file
5
content/xbl/builtin/win/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
7
content/xbl/moz.build
Normal file
7
content/xbl/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['src', 'builtin']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/xbl/src/moz.build
Normal file
5
content/xbl/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xbl/test/moz.build
Normal file
5
content/xbl/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,8 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = content/src document
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
5
content/xml/content/src/moz.build
Normal file
5
content/xml/content/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,10 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public resources src
|
|
||||||
|
|
||||||
TEST_DIRS += test
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
7
content/xml/document/moz.build
Normal file
7
content/xml/document/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'resources', 'src']
|
||||||
|
TEST_DIRS += ['test']
|
||||||
5
content/xml/document/public/moz.build
Normal file
5
content/xml/document/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xml/document/resources/moz.build
Normal file
5
content/xml/document/resources/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xml/document/src/moz.build
Normal file
5
content/xml/document/src/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xml/document/test/moz.build
Normal file
5
content/xml/document/test/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
6
content/xml/moz.build
Normal file
6
content/xml/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['content/src', 'document']
|
||||||
@@ -9,10 +9,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = public src
|
|
||||||
|
|
||||||
TEST_DIRS += tests/buster \
|
|
||||||
tests/mochitest
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
7
content/xslt/moz.build
Normal file
7
content/xslt/moz.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['public', 'src']
|
||||||
|
TEST_DIRS += ['tests/buster', 'tests/mochitest']
|
||||||
5
content/xslt/public/moz.build
Normal file
5
content/xslt/public/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -8,7 +8,4 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PARALLEL_DIRS = base xml xpath xslt
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|||||||
5
content/xslt/src/base/moz.build
Normal file
5
content/xslt/src/base/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
6
content/xslt/src/moz.build
Normal file
6
content/xslt/src/moz.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
|
PARALLEL_DIRS += ['base', 'xml', 'xpath', 'xslt']
|
||||||
5
content/xslt/src/xml/moz.build
Normal file
5
content/xslt/src/xml/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xslt/src/xpath/moz.build
Normal file
5
content/xslt/src/xpath/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xslt/src/xslt/moz.build
Normal file
5
content/xslt/src/xslt/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xslt/tests/buster/moz.build
Normal file
5
content/xslt/tests/buster/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
5
content/xslt/tests/mochitest/moz.build
Normal file
5
content/xslt/tests/mochitest/moz.build
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# 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/.
|
||||||
|
|
||||||
@@ -9,16 +9,5 @@ srcdir = @srcdir@
|
|||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
# We need to build document even if XUL is disabled, for the nsIController[s]
|
|
||||||
# interfaces and implementations.
|
|
||||||
# Likewise for content, because of nsXULAtoms.
|
|
||||||
|
|
||||||
PARALLEL_DIRS = document content
|
|
||||||
|
|
||||||
ifdef MOZ_XUL
|
|
||||||
PARALLEL_DIRS += templates
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
include $(topsrcdir)/config/rules.mk
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user