2013-06-11 18:41:21 -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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2013-07-11 13:40:36 -07:00
|
|
|
'Promise.h',
|
2014-07-01 21:19:48 -07:00
|
|
|
'PromiseDebugging.h',
|
2014-02-24 05:56:54 -08:00
|
|
|
'PromiseNativeHandler.h',
|
|
|
|
'PromiseWorkerProxy.h',
|
2013-06-11 18:41:21 -07:00
|
|
|
]
|
|
|
|
|
2014-07-01 21:19:48 -07:00
|
|
|
UNIFIED_SOURCES += [
|
2013-07-11 13:40:36 -07:00
|
|
|
'Promise.cpp',
|
|
|
|
'PromiseCallback.cpp',
|
2014-07-01 21:19:48 -07:00
|
|
|
'PromiseDebugging.cpp'
|
2013-06-11 18:41:21 -07:00
|
|
|
]
|
2013-08-21 23:55:59 -07:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-13 09:25:21 -07:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../workers',
|
|
|
|
]
|
2013-11-18 18:47:14 -08:00
|
|
|
|
2014-07-22 16:37:51 -07:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-07-25 23:17:24 -07:00
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|