1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2# vim: set filetype=python:
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7XPIDL_MODULE = 'update'
8
9DIRS += [
10    'updater',
11]
12
13XPIDL_SOURCES += [
14    'nsIUpdateService.idl',
15]
16
17TEST_DIRS += ['tests']
18
19EXTRA_COMPONENTS += [
20    'nsUpdateService.js',
21    'nsUpdateService.manifest',
22    'nsUpdateServiceStub.js',
23]
24
25EXTRA_JS_MODULES += [
26    'UpdateListener.jsm',
27    'UpdateTelemetry.jsm',
28]
29
30JAR_MANIFESTS += ['jar.mn']
31
32with Files('**'):
33    BUG_COMPONENT = ('Toolkit', 'Application Update')
34