mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 18:08:58 +00:00
9f33118c8c
When we build mar, there is no reason not to build signmar as well. It used to be optional because not all platforms were supported, but they are now. ... except when building the newly added tools/update-packaging, which builds the mar tool as a standalone thing, and building signmar as well causes complications. Differential Revision: https://phabricator.services.mozilla.com/D36992 --HG-- extra : moz-landing-system : lando
18 lines
447 B
Python
18 lines
447 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/.
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Toolkit', 'Application Update')
|
|
|
|
DIRS += [
|
|
'src',
|
|
'sign',
|
|
'tool',
|
|
'verify',
|
|
]
|
|
|
|
TEST_DIRS += ['tests']
|