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/.
|
|
|
|
|
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
XPIDL_MODULE = 'dom_promise'
|
2013-06-11 18:41:21 -07:00
|
|
|
|
|
|
|
MODULE = 'dom'
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2013-07-11 13:40:36 -07:00
|
|
|
'Promise.h',
|
2013-06-11 18:41:21 -07:00
|
|
|
]
|
|
|
|
|
2013-10-24 16:23:05 -07:00
|
|
|
SOURCES += [
|
2013-07-11 13:40:36 -07:00
|
|
|
'Promise.cpp',
|
|
|
|
'PromiseCallback.cpp',
|
2013-06-11 18:41:21 -07:00
|
|
|
]
|
2013-08-21 23:55:59 -07:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-08-21 23:56:00 -07:00
|
|
|
LIBXUL_LIBRARY = True
|
|
|
|
|
2013-08-15 06:02:09 -07:00
|
|
|
LIBRARY_NAME = 'dompromise_s'
|
|
|
|
|
2013-09-13 09:25:21 -07:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../workers',
|
|
|
|
]
|