2013-06-12 05:41:21 +04: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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2014-09-12 06:18:49 +04:00
|
|
|
'AbortablePromise.h',
|
2013-07-12 00:40:36 +04:00
|
|
|
'Promise.h',
|
2014-07-02 08:19:48 +04:00
|
|
|
'PromiseDebugging.h',
|
2014-09-12 06:18:49 +04:00
|
|
|
'PromiseNativeAbortCallback.h',
|
2014-02-24 17:56:54 +04:00
|
|
|
'PromiseNativeHandler.h',
|
|
|
|
'PromiseWorkerProxy.h',
|
2013-06-12 05:41:21 +04:00
|
|
|
]
|
|
|
|
|
2014-07-02 08:19:48 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-09-12 06:18:49 +04:00
|
|
|
'AbortablePromise.cpp',
|
2013-07-12 00:40:36 +04:00
|
|
|
'Promise.cpp',
|
|
|
|
'PromiseCallback.cpp',
|
2014-07-02 08:19:48 +04:00
|
|
|
'PromiseDebugging.cpp'
|
2013-06-12 05:41:21 +04:00
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-13 20:25:21 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
2015-04-10 18:27:57 +03:00
|
|
|
'../ipc',
|
2013-09-13 20:25:21 +04:00
|
|
|
'../workers',
|
|
|
|
]
|
2013-11-19 06:47:14 +04:00
|
|
|
|
2015-04-10 18:27:57 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-07-26 10:17:24 +04:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|
2014-10-20 06:27:36 +04:00
|
|
|
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/chrome.ini']
|
2015-04-10 18:27:57 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser.ini']
|