2014-03-05 07:26:39 +04: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/.
|
|
|
|
|
2016-03-20 13:56:11 +03:00
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
|
2014-03-05 07:26:39 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2014-03-05 07:25:40 +04:00
|
|
|
'DeviceStorageFileSystem.h',
|
2014-03-05 07:26:39 +04:00
|
|
|
'Directory.h',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemBase.h',
|
|
|
|
'FileSystemRequestParent.h',
|
|
|
|
'FileSystemTaskBase.h',
|
|
|
|
'FileSystemUtils.h',
|
2015-07-10 20:54:53 +03:00
|
|
|
'OSFileSystem.h',
|
2014-03-05 07:26:39 +04:00
|
|
|
]
|
|
|
|
|
2014-09-25 18:12:06 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2014-03-05 07:25:40 +04:00
|
|
|
'CreateDirectoryTask.cpp',
|
2014-03-05 12:40:48 +04:00
|
|
|
'CreateFileTask.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'DeviceStorageFileSystem.cpp',
|
2014-03-05 07:26:39 +04:00
|
|
|
'Directory.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemBase.cpp',
|
2014-03-05 07:24:19 +04:00
|
|
|
'FileSystemPermissionRequest.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemRequestParent.cpp',
|
|
|
|
'FileSystemTaskBase.cpp',
|
|
|
|
'FileSystemUtils.cpp',
|
2015-06-23 02:31:32 +03:00
|
|
|
'GetDirectoryListingTask.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'GetFileOrDirectoryTask.cpp',
|
2015-07-10 20:54:53 +03:00
|
|
|
'OSFileSystem.cpp',
|
2014-03-12 10:30:21 +04:00
|
|
|
'RemoveTask.cpp',
|
2014-03-05 07:26:39 +04:00
|
|
|
]
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-03-05 07:26:39 +04:00
|
|
|
|
2014-03-05 07:25:40 +04:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'PFileSystemRequest.ipdl',
|
|
|
|
]
|
|
|
|
|
2014-03-05 07:26:39 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
]
|
2015-09-23 07:39:03 +03:00
|
|
|
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
CXXFLAGS += ['-Wshadow']
|