mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b64a1c8d80
--HG-- rename : dom/filehandle/File.cpp => dom/indexedDB/FileSnapshot.cpp rename : dom/filehandle/File.h => dom/indexedDB/FileSnapshot.h rename : dom/filehandle/test/dummy_worker.js => dom/indexedDB/test/dummy_worker.js rename : dom/filehandle/test/test_append_read_data.html => dom/indexedDB/test/test_filehandle_append_read_data.html rename : dom/filehandle/test/test_compat.html => dom/indexedDB/test/test_filehandle_compat.html rename : dom/filehandle/test/test_getFile.html => dom/indexedDB/test/test_filehandle_getFile.html rename : dom/filehandle/test/test_filehandle_lifetimes.html => dom/indexedDB/test/test_filehandle_lifetimes.html rename : dom/filehandle/test/test_filehandle_lifetimes_nested.html => dom/indexedDB/test/test_filehandle_lifetimes_nested.html rename : dom/filehandle/test/test_location.html => dom/indexedDB/test/test_filehandle_location.html rename : dom/filehandle/test/test_filehandle_ordering.html => dom/indexedDB/test/test_filehandle_ordering.html rename : dom/filehandle/test/test_overlapping_filehandles.html => dom/indexedDB/test/test_filehandle_overlapping.html rename : dom/filehandle/test/test_progress_events.html => dom/indexedDB/test/test_filehandle_progress_events.html rename : dom/filehandle/test/test_readonly_filehandles.html => dom/indexedDB/test/test_filehandle_readonly_exceptions.html rename : dom/filehandle/test/test_request_readyState.html => dom/indexedDB/test/test_filehandle_request_readyState.html rename : dom/filehandle/test/test_stream_tracking.html => dom/indexedDB/test/test_filehandle_stream_tracking.html rename : dom/filehandle/test/test_success_events_after_abort.html => dom/indexedDB/test/test_filehandle_success_events_after_abort.html rename : dom/filehandle/test/test_truncate.html => dom/indexedDB/test/test_filehandle_truncate.html rename : dom/filehandle/test/test_workers.html => dom/indexedDB/test/test_filehandle_workers.html rename : dom/filehandle/test/test_write_read_data.html => dom/indexedDB/test/test_filehandle_write_read_data.html rename : dom/filehandle/test/test_getFileId.html => dom/indexedDB/test/test_getFileId.html rename : dom/webidl/FileHandle.webidl => dom/webidl/IDBFileHandle.webidl rename : dom/webidl/FileRequest.webidl => dom/webidl/IDBFileRequest.webidl
83 lines
1.8 KiB
Python
83 lines
1.8 KiB
Python
# -*- 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/.
|
|
|
|
DIRS += ['ipc']
|
|
TEST_DIRS += ['test']
|
|
|
|
EXPORTS.mozilla.dom.indexedDB += [
|
|
'Client.h',
|
|
'DatabaseInfo.h',
|
|
'FileInfo.h',
|
|
'FileManager.h',
|
|
'FileSnapshot.h',
|
|
'IDBCursor.h',
|
|
'IDBDatabase.h',
|
|
'IDBEvents.h',
|
|
'IDBFactory.h',
|
|
'IDBFileHandle.h',
|
|
'IDBFileRequest.h',
|
|
'IDBIndex.h',
|
|
'IDBKeyRange.h',
|
|
'IDBMutableFile.h',
|
|
'IDBObjectStore.h',
|
|
'IDBRequest.h',
|
|
'IDBTransaction.h',
|
|
'IDBWrapperCache.h',
|
|
'IndexedDatabase.h',
|
|
'IndexedDatabaseManager.h',
|
|
'Key.h',
|
|
'KeyPath.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'AsyncConnectionHelper.cpp',
|
|
'CheckPermissionsHelper.cpp',
|
|
'Client.cpp',
|
|
'DatabaseInfo.cpp',
|
|
'FileInfo.cpp',
|
|
'FileManager.cpp',
|
|
'FileSnapshot.cpp',
|
|
'IDBDatabase.cpp',
|
|
'IDBEvents.cpp',
|
|
'IDBFactory.cpp',
|
|
'IDBFileHandle.cpp',
|
|
'IDBFileRequest.cpp',
|
|
'IDBKeyRange.cpp',
|
|
'IDBMutableFile.cpp',
|
|
'IDBRequest.cpp',
|
|
'IDBTransaction.cpp',
|
|
'IDBWrapperCache.cpp',
|
|
'IndexedDatabaseManager.cpp',
|
|
'Key.cpp',
|
|
'KeyPath.cpp',
|
|
'OpenDatabaseHelper.cpp',
|
|
'TransactionThreadPool.cpp',
|
|
]
|
|
|
|
# These files cannot be built in unified mode because of name collisions
|
|
SOURCES += [
|
|
'IDBCursor.cpp',
|
|
'IDBIndex.cpp',
|
|
'IDBObjectStore.cpp',
|
|
'ReportInternalError.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|
|
LOCAL_INCLUDES += [
|
|
'/caps',
|
|
'/content/base/src',
|
|
'/db/sqlite3/src',
|
|
'/dom/base',
|
|
'/dom/quota',
|
|
'/dom/src/storage',
|
|
'/xpcom/build',
|
|
]
|
|
|