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/.
|
|
|
|
|
2014-05-07 18:32:12 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2014-07-17 20:40:54 +04:00
|
|
|
'AsyncHelper.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'FileHandle.h',
|
|
|
|
'FileHelper.h',
|
2014-03-16 20:53:44 +04:00
|
|
|
'FileRequest.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'FileService.h',
|
2014-07-17 20:40:54 +04:00
|
|
|
'MetadataHelper.h',
|
2014-06-12 07:35:29 +04:00
|
|
|
'MutableFile.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-11-24 23:19:38 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'AsyncHelper.cpp',
|
|
|
|
'FileHandle.cpp',
|
|
|
|
'FileHelper.cpp',
|
|
|
|
'FileRequest.cpp',
|
|
|
|
'FileService.cpp',
|
|
|
|
'FileStreamWrappers.cpp',
|
|
|
|
'MemoryStreams.cpp',
|
|
|
|
'MetadataHelper.cpp',
|
2014-06-12 07:35:29 +04:00
|
|
|
'MutableFile.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
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',
|
|
|
|
]
|