2022-01-24 15:11:29 +03:00
|
|
|
# -*- Mode: python; 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/.
|
|
|
|
|
2022-05-03 14:38:15 +03:00
|
|
|
TEST_DIRS += ["test"]
|
|
|
|
|
2022-01-24 15:11:29 +03:00
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
"FileSystemDirectoryHandle.h",
|
|
|
|
"FileSystemDirectoryIterator.h",
|
|
|
|
"FileSystemFileHandle.h",
|
|
|
|
"FileSystemHandle.h",
|
2022-01-24 18:48:46 +03:00
|
|
|
"FileSystemSyncAccessHandle.h",
|
2022-04-13 21:57:48 +03:00
|
|
|
"FileSystemWritableFileStream.h",
|
2022-01-24 15:11:29 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"FileSystemDirectoryHandle.cpp",
|
|
|
|
"FileSystemDirectoryIterator.cpp",
|
|
|
|
"FileSystemFileHandle.cpp",
|
|
|
|
"FileSystemHandle.cpp",
|
2022-01-24 18:48:46 +03:00
|
|
|
"FileSystemSyncAccessHandle.cpp",
|
2022-04-13 21:57:48 +03:00
|
|
|
"FileSystemWritableFileStream.cpp",
|
2022-01-24 15:11:29 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
|
|
|
FINAL_LIBRARY = "xul"
|