2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-03-05 07:26:39 +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/.
|
|
|
|
|
2017-03-01 16:20:25 +03:00
|
|
|
with Files("**"):
|
2018-02-08 16:47:16 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: File")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
2016-06-07 01:55:16 +03:00
|
|
|
DIRS += ['compat']
|
|
|
|
|
2016-03-20 13:56:11 +03:00
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
|
2014-03-05 07:26:39 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'Directory.h',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemBase.h',
|
|
|
|
'FileSystemRequestParent.h',
|
2017-03-16 10:53:49 +03:00
|
|
|
'FileSystemSecurity.h',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemTaskBase.h',
|
|
|
|
'FileSystemUtils.h',
|
2016-07-14 10:03:10 +03:00
|
|
|
'GetFilesHelper.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:26:39 +04:00
|
|
|
'Directory.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemBase.cpp',
|
|
|
|
'FileSystemRequestParent.cpp',
|
2017-03-16 10:53:49 +03:00
|
|
|
'FileSystemSecurity.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'FileSystemTaskBase.cpp',
|
|
|
|
'FileSystemUtils.cpp',
|
2015-06-23 02:31:32 +03:00
|
|
|
'GetDirectoryListingTask.cpp',
|
2014-03-05 07:25:40 +04:00
|
|
|
'GetFileOrDirectoryTask.cpp',
|
2016-07-14 10:03:10 +03:00
|
|
|
'GetFilesHelper.cpp',
|
2016-04-13 14:15:56 +03:00
|
|
|
'GetFilesTask.cpp',
|
2015-07-10 20:54:53 +03:00
|
|
|
'OSFileSystem.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 += [
|
2016-04-09 21:17:02 +03:00
|
|
|
'PFileSystemParams.ipdlh',
|
2014-03-05 07:25:40 +04:00
|
|
|
'PFileSystemRequest.ipdl',
|
|
|
|
]
|
|
|
|
|
2014-03-05 07:26:39 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/base',
|
|
|
|
]
|