gecko-dev/toolkit/modules/subprocess/moz.build
Dustin J. Mitchell 26d48b3202 Bug 1403519 - only build docs when necessary r=gps
This marks **/docs/** as exclusively docs, and code that is autodoc'd as
inclusively docs.

That means that a change that purely modifies documentation files will *only*
run `docs` tasks, while a change that modifies autodoc'd source code will
*additionaly* run `docs` tasks.  The tasks do not run by default.

MozReview-Commit-ID: G9tOK0AwtrI

--HG--
extra : rebase_source : 8dd971e5c9b0eb5f47895664a4ea49442f303ecb
extra : source : 0881de9b2b5e36ec37cc866f1d4af109da57a919
2017-10-02 18:22:56 +00:00

36 lines
972 B
Python

# -*- Mode: python; 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/.
EXTRA_JS_MODULES += [
'Subprocess.jsm',
]
EXTRA_JS_MODULES.subprocess += [
'subprocess_common.jsm',
'subprocess_shared.js',
'subprocess_worker_common.js',
]
if CONFIG['OS_TARGET'] == 'WINNT':
EXTRA_JS_MODULES.subprocess += [
'subprocess_shared_win.js',
'subprocess_win.jsm',
'subprocess_worker_win.js',
]
else:
EXTRA_JS_MODULES.subprocess += [
'subprocess_shared_unix.js',
'subprocess_unix.jsm',
'subprocess_worker_unix.js',
]
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini']
SPHINX_TREES['toolkit_modules/subprocess'] = ['docs']
with Files('docs/**'):
SCHEDULES.exclusive = ['docs']