2013-08-29 02:43:09 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIDOMFMRadio.idl',
|
|
|
|
'nsIFMRadio.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'dom_fm'
|
|
|
|
|
|
|
|
MODULE = 'dom'
|
2013-08-29 03:47:45 -07:00
|
|
|
LIBRARY_NAME = 'domfm_s'
|
2013-08-29 02:43:09 -07:00
|
|
|
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'FMRadio.cpp',
|
|
|
|
'nsFMRadioSettings.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'DOMFMRadioParent.jsm',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'DOMFMRadio.manifest',
|
|
|
|
'DOMFMRadioChild.js',
|
|
|
|
]
|
|
|
|
|
|
|
|
LIBXUL_LIBRARY = True
|