2017-05-25 20:50:32 +03:00
|
|
|
# -*- 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/.
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'ipc',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'PaymentRequestData.h',
|
|
|
|
'PaymentRequestService.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2017-06-14 10:59:00 +03:00
|
|
|
'PaymentAddress.h',
|
2017-05-25 20:50:32 +03:00
|
|
|
'PaymentRequest.h',
|
|
|
|
'PaymentRequestManager.h',
|
2017-06-23 12:15:51 +03:00
|
|
|
'PaymentRequestUpdateEvent.h',
|
2017-06-14 10:59:00 +03:00
|
|
|
'PaymentResponse.h',
|
2017-05-25 20:50:32 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2017-07-26 11:07:07 +03:00
|
|
|
'BasicCardPayment.cpp',
|
2017-05-25 20:50:32 +03:00
|
|
|
'PaymentActionRequest.cpp',
|
2017-06-14 10:59:00 +03:00
|
|
|
'PaymentActionResponse.cpp',
|
|
|
|
'PaymentAddress.cpp',
|
2017-05-25 20:50:32 +03:00
|
|
|
'PaymentRequest.cpp',
|
|
|
|
'PaymentRequestData.cpp',
|
|
|
|
'PaymentRequestManager.cpp',
|
|
|
|
'PaymentRequestModule.cpp',
|
|
|
|
'PaymentRequestService.cpp',
|
2017-06-23 12:15:51 +03:00
|
|
|
'PaymentRequestUpdateEvent.cpp',
|
2017-05-25 20:50:32 +03:00
|
|
|
'PaymentRequestUtils.cpp',
|
2017-06-14 10:59:00 +03:00
|
|
|
'PaymentResponse.cpp',
|
2017-05-25 20:50:32 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
|
2017-06-13 09:43:18 +03:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|