2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# 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/.
|
|
|
|
|
2013-03-19 22:47:00 +04:00
|
|
|
MODULE = 'dom'
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'ErrorResult.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2013-08-23 09:17:09 +04:00
|
|
|
'AtomList.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'BindingDeclarations.h',
|
|
|
|
'BindingUtils.h',
|
|
|
|
'CallbackFunction.h',
|
|
|
|
'CallbackInterface.h',
|
|
|
|
'CallbackObject.h',
|
2013-10-24 03:05:43 +04:00
|
|
|
'Date.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'DOMJSClass.h',
|
|
|
|
'DOMJSProxyHandler.h',
|
2013-10-11 20:28:23 +04:00
|
|
|
'DOMString.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'Errors.msg',
|
2013-09-09 07:28:50 +04:00
|
|
|
'Exceptions.h',
|
2013-08-24 06:42:39 +04:00
|
|
|
'JSSlots.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'NonRefcountedDOMObject.h',
|
|
|
|
'Nullable.h',
|
2013-09-10 11:03:37 +04:00
|
|
|
'OwningNonNull.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'PrimitiveConversions.h',
|
2013-09-26 08:04:59 +04:00
|
|
|
'RootedDictionary.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'TypedArray.h',
|
2013-09-10 11:03:37 +04:00
|
|
|
'UnionMember.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-08-22 10:56:00 +04:00
|
|
|
LIBXUL_LIBRARY = True
|
|
|
|
|
2013-08-22 10:56:01 +04:00
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
|
2013-08-15 17:02:09 +04:00
|
|
|
LIBRARY_NAME = 'dombindings_s'
|
|
|
|
|
2013-10-03 11:11:13 +04:00
|
|
|
EXPORT_LIBRARY = True
|
|
|
|
|
2013-10-24 01:20:55 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../bluetooth',
|
|
|
|
'../camera',
|
|
|
|
'../file',
|
|
|
|
'../src/geolocation',
|
|
|
|
'../workers',
|
|
|
|
'/content/base/src',
|
|
|
|
'/content/events/src',
|
|
|
|
'/content/html/document/src',
|
|
|
|
'/content/media/webaudio',
|
|
|
|
'/content/svg/content/src',
|
|
|
|
'/content/xbl/src',
|
|
|
|
'/layout/style',
|
|
|
|
'/layout/xul/tree',
|
|
|
|
]
|
2013-10-02 21:17:55 +04:00
|
|
|
|
2013-10-24 01:20:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|