Bug 1591538 - Don't include taskcluster stuff in SM tarball; r=sfink

We can just not add the directory to DIRS if JS_STANDALONE is true.

Differential Revision: https://phabricator.services.mozilla.com/D50739

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Anthony Ramine 2019-11-18 08:47:00 +00:00
Родитель 63538cf853
Коммит 71bb1a15ff
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -128,9 +128,6 @@ case $cmd in
+ /testing/mozbase/**
+ /testing/web-platform/tests/streams/**
+ /taskcluster/moz.build
+ /taskcluster/taskgraph/test/**
+ /toolkit/crashreporter/tools/symbolstore.py
+ /toolkit/mozapps/installer/package-name.mk
+ /toolkit/mozapps/installer/upload-files.mk

Просмотреть файл

@ -126,11 +126,13 @@ if CONFIG['ENABLE_CLANG_PLUGIN']:
DIRS += [
'config',
'python',
'taskcluster',
'testing/mozbase',
'third_party/python',
]
if not CONFIG['JS_STANDALONE']:
DIRS += ['taskcluster']
if not CONFIG['JS_STANDALONE'] or not CONFIG['MOZ_BUILD_APP']:
CONFIGURE_DEFINE_FILES += [
'mozilla-config.h',