Bug 1758055 - Move DOM bindings to api folder. r=janv,dom-storage-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D148521
This commit is contained in:
Jari Jalkanen
2022-06-08 10:23:19 +00:00
parent bc6aea545f
commit 794e780d89
14 changed files with 27 additions and 22 deletions

25
dom/fs/api/moz.build Normal file
View File

@@ -0,0 +1,25 @@
# -*- 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/.
EXPORTS.mozilla.dom += [
"FileSystemDirectoryHandle.h",
"FileSystemDirectoryIterator.h",
"FileSystemFileHandle.h",
"FileSystemHandle.h",
"FileSystemSyncAccessHandle.h",
"FileSystemWritableFileStream.h",
]
UNIFIED_SOURCES += [
"FileSystemDirectoryHandle.cpp",
"FileSystemDirectoryIterator.cpp",
"FileSystemFileHandle.cpp",
"FileSystemHandle.cpp",
"FileSystemSyncAccessHandle.cpp",
"FileSystemWritableFileStream.cpp",
]
FINAL_LIBRARY = "xul"

View File

@@ -4,26 +4,6 @@
# 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/.
DIRS += ["api"]
TEST_DIRS += ["test"]
EXPORTS.mozilla.dom += [
"FileSystemDirectoryHandle.h",
"FileSystemDirectoryIterator.h",
"FileSystemFileHandle.h",
"FileSystemHandle.h",
"FileSystemSyncAccessHandle.h",
"FileSystemWritableFileStream.h",
]
UNIFIED_SOURCES += [
"FileSystemDirectoryHandle.cpp",
"FileSystemDirectoryIterator.cpp",
"FileSystemFileHandle.cpp",
"FileSystemHandle.cpp",
"FileSystemSyncAccessHandle.cpp",
"FileSystemWritableFileStream.cpp",
]
include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul"