2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:20 +00:00
|
|
|
# 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/.
|
|
|
|
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['interfaces']
|
2013-02-25 22:01:39 +00:00
|
|
|
|
2015-01-19 13:50:32 +00:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'PaymentProviderUtils.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
SOURCES += [
|
|
|
|
'PaymentProviderUtils.cpp',
|
|
|
|
]
|
|
|
|
|
2014-07-28 18:06:00 +00:00
|
|
|
EXTRA_PP_JS_MODULES += [
|
2013-06-10 16:08:47 +00:00
|
|
|
'Payment.jsm',
|
|
|
|
]
|
|
|
|
|
2013-08-02 07:03:42 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'Payment.js',
|
|
|
|
'Payment.manifest',
|
2015-01-19 13:50:32 +00:00
|
|
|
'PaymentFlowInfo.js'
|
|
|
|
]
|
|
|
|
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'PaymentProvider.js'
|
|
|
|
]
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base'
|
2013-08-02 07:03:42 +00:00
|
|
|
]
|
|
|
|
|
2014-07-26 06:17:24 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|
2015-01-19 13:50:32 +00:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']
|