2013-06-12 01:41:21 +00: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 20:40:36 +00:00
|
|
|
XPIDL_MODULE = 'dom_promise'
|
2013-06-12 01:41:21 +00:00
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2013-07-11 20:40:36 +00:00
|
|
|
'Promise.h',
|
2013-11-19 18:43:51 +00:00
|
|
|
'PromiseNativeHandler.h'
|
2013-06-12 01:41:21 +00:00
|
|
|
]
|
|
|
|
|
2013-10-24 23:23:05 +00:00
|
|
|
SOURCES += [
|
2013-07-11 20:40:36 +00:00
|
|
|
'Promise.cpp',
|
|
|
|
'PromiseCallback.cpp',
|
2013-06-12 01:41:21 +00:00
|
|
|
]
|
2013-08-22 06:55:59 +00:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-13 16:25:21 +00:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../workers',
|
|
|
|
]
|
2013-11-19 02:47:14 +00:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|