Bug 1560374 - Set testharness and reftest web-platform-tests to Tier-1; r=jmaher...
[gecko.git] / dom / payments / moz.build
blob8cd2bf67f5b7eaabf8fa7f009bc9037961291666
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/.
7 DIRS += [
8     'ipc',
11 EXPORTS += [
12     'PaymentRequestData.h',
13     'PaymentRequestService.h',
16 EXPORTS.mozilla.dom += [
17     'MerchantValidationEvent.h',
18     'PaymentAddress.h',
19     'PaymentMethodChangeEvent.h',
20     'PaymentRequest.h',
21     'PaymentRequestManager.h',
22     'PaymentRequestUpdateEvent.h',
23     'PaymentResponse.h',
26 UNIFIED_SOURCES += [
27     'BasicCardPayment.cpp',
28     'MerchantValidationEvent.cpp',
29     'PaymentActionResponse.cpp',
30     'PaymentAddress.cpp',
31     'PaymentMethodChangeEvent.cpp',
32     'PaymentRequest.cpp',
33     'PaymentRequestData.cpp',
34     'PaymentRequestManager.cpp',
35     'PaymentRequestService.cpp',
36     'PaymentRequestUpdateEvent.cpp',
37     'PaymentRequestUtils.cpp',
38     'PaymentResponse.cpp',
41 XPCOM_MANIFESTS += [
42     'components.conf',
45 include('/ipc/chromium/chromium-config.mozbuild')
47 FINAL_LIBRARY = 'xul'
49 with Files("**"):
50     BUG_COMPONENT = ("Core", "DOM: Web Payments")
52 BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
53 MOCHITEST_MANIFESTS += ['test/mochitest.ini']