1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5XPIDL_MODULE = 'viaduct'
6
7XPIDL_SOURCES += [
8    'mozIViaduct.idl',
9]
10
11XPCOM_MANIFESTS += [
12    'components.conf',
13]
14
15UNIFIED_SOURCES += [
16    'fetch_msg_types.pb.cc',
17    'Viaduct.cpp',
18    'ViaductRequest.cpp',
19]
20
21EXPORTS.mozilla += [
22    'fetch_msg_types.pb.h',
23    'Viaduct.h',
24    'ViaductRequest.h',
25]
26
27include('/ipc/chromium/chromium-config.mozbuild')
28
29DEFINES['GOOGLE_PROTOBUF_NO_RTTI'] = True
30DEFINES['GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER'] = True
31
32FINAL_LIBRARY = 'xul'
33