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/.
|
|
|
|
|
2015-09-09 14:15:05 +03:00
|
|
|
EXPORTS.mozilla.dom.filehandle += [
|
|
|
|
'ActorsChild.h',
|
|
|
|
'ActorsParent.h',
|
|
|
|
'SerializationHelpers.h',
|
|
|
|
]
|
|
|
|
|
2014-05-07 18:32:12 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2015-09-09 14:15:05 +03:00
|
|
|
'FileHandleBase.h',
|
|
|
|
'FileHandleCommon.h',
|
|
|
|
'FileHandleStorage.h',
|
|
|
|
'FileRequestBase.h',
|
|
|
|
'MutableFileBase.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-11-24 23:19:38 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2015-09-09 14:15:05 +03:00
|
|
|
'ActorsChild.cpp',
|
|
|
|
'ActorsParent.cpp',
|
|
|
|
'FileHandleBase.cpp',
|
|
|
|
'FileHandleCommon.cpp',
|
|
|
|
'MutableFileBase.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PBackgroundFileHandle.ipdl',
|
|
|
|
'PBackgroundFileRequest.ipdl',
|
|
|
|
'PBackgroundMutableFile.ipdl',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2013-09-13 20:25:21 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
]
|
2013-11-19 06:47:14 +04:00
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2015-04-14 11:57:41 +03:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/xpcom/threads',
|
|
|
|
]
|