| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("filesystem") { | 7 blink_modules_sources("filesystem") { |
| 8 sources = [ | 8 sources = [ |
| 9 "DOMFilePath.cpp", | 9 "DOMFilePath.cpp", |
| 10 "DOMFilePath.h", | 10 "DOMFilePath.h", |
| 11 "DOMFileSystem.cpp", | |
| 12 "DOMFileSystem.h", | |
| 13 "DOMFileSystemBase.cpp", | |
| 14 "DOMFileSystemBase.h", | |
| 15 "DOMFileSystemSync.cpp", | |
| 16 "DOMFileSystemSync.h", | |
| 17 "DOMWindowFileSystem.cpp", | 11 "DOMWindowFileSystem.cpp", |
| 18 "DOMWindowFileSystem.h", | 12 "DOMWindowFileSystem.h", |
| 19 "DataTransferItemFileSystem.cpp", | 13 "DataTransferItemFileSystem.cpp", |
| 20 "DataTransferItemFileSystem.h", | 14 "DataTransferItemFileSystem.h", |
| 21 "DevToolsHostFileSystem.cpp", | 15 "DevToolsHostFileSystem.cpp", |
| 22 "DevToolsHostFileSystem.h", | 16 "DevToolsHostFileSystem.h", |
| 23 "DirectoryEntry.cpp", | |
| 24 "DirectoryEntry.h", | |
| 25 "DirectoryEntrySync.cpp", | |
| 26 "DirectoryEntrySync.h", | |
| 27 "DirectoryReader.cpp", | |
| 28 "DirectoryReader.h", | |
| 29 "DirectoryReaderBase.h", | |
| 30 "DirectoryReaderSync.cpp", | |
| 31 "DirectoryReaderSync.h", | |
| 32 "DraggedIsolatedFileSystemImpl.cpp", | 17 "DraggedIsolatedFileSystemImpl.cpp", |
| 33 "DraggedIsolatedFileSystemImpl.h", | 18 "DraggedIsolatedFileSystemImpl.h", |
| 34 "EntriesCallback.h", | |
| 35 "Entry.cpp", | |
| 36 "Entry.h", | |
| 37 "EntryBase.cpp", | |
| 38 "EntryBase.h", | |
| 39 "EntryCallback.h", | |
| 40 "EntrySync.cpp", | |
| 41 "EntrySync.h", | |
| 42 "ErrorCallback.h", | 19 "ErrorCallback.h", |
| 43 "FileEntry.cpp", | 20 "FileSystem.cpp", |
| 44 "FileEntry.h", | 21 "FileSystem.h", |
| 45 "FileEntrySync.cpp", | 22 "FileSystemBase.cpp", |
| 46 "FileEntrySync.h", | 23 "FileSystemBase.h", |
| 47 "FileSystemCallback.h", | 24 "FileSystemCallback.h", |
| 48 "FileSystemCallbacks.cpp", | 25 "FileSystemCallbacks.cpp", |
| 49 "FileSystemCallbacks.h", | 26 "FileSystemCallbacks.h", |
| 50 "FileSystemClient.h", | 27 "FileSystemClient.h", |
| 28 "FileSystemDirectoryEntry.cpp", |
| 29 "FileSystemDirectoryEntry.h", |
| 30 "FileSystemDirectoryEntrySync.cpp", |
| 31 "FileSystemDirectoryEntrySync.h", |
| 32 "FileSystemDirectoryReader.cpp", |
| 33 "FileSystemDirectoryReader.h", |
| 34 "FileSystemDirectoryReaderBase.h", |
| 35 "FileSystemDirectoryReaderSync.cpp", |
| 36 "FileSystemDirectoryReaderSync.h", |
| 37 "FileSystemEntriesCallback.h", |
| 38 "FileSystemEntry.cpp", |
| 39 "FileSystemEntry.h", |
| 40 "FileSystemEntryBase.cpp", |
| 41 "FileSystemEntryBase.h", |
| 42 "FileSystemEntryCallback.h", |
| 43 "FileSystemEntrySync.cpp", |
| 44 "FileSystemEntrySync.h", |
| 45 "FileSystemFileEntry.cpp", |
| 46 "FileSystemFileEntry.h", |
| 47 "FileSystemFileEntrySync.cpp", |
| 48 "FileSystemFileEntrySync.h", |
| 49 "FileSystemMetadata.h", |
| 50 "FileSystemMetadataCallback.h", |
| 51 "FileSystemSync.cpp", |
| 52 "FileSystemSync.h", |
| 51 "FileWriter.cpp", | 53 "FileWriter.cpp", |
| 52 "FileWriter.h", | 54 "FileWriter.h", |
| 53 "FileWriterBase.cpp", | 55 "FileWriterBase.cpp", |
| 54 "FileWriterBase.h", | 56 "FileWriterBase.h", |
| 55 "FileWriterBaseCallback.h", | 57 "FileWriterBaseCallback.h", |
| 56 "FileWriterCallback.h", | 58 "FileWriterCallback.h", |
| 57 "FileWriterSync.cpp", | 59 "FileWriterSync.cpp", |
| 58 "FileWriterSync.h", | 60 "FileWriterSync.h", |
| 59 "HTMLInputElementFileSystem.cpp", | 61 "HTMLInputElementFileSystem.cpp", |
| 60 "HTMLInputElementFileSystem.h", | 62 "HTMLInputElementFileSystem.h", |
| 61 "LocalFileSystem.cpp", | 63 "LocalFileSystem.cpp", |
| 62 "LocalFileSystem.h", | 64 "LocalFileSystem.h", |
| 63 "Metadata.h", | |
| 64 "MetadataCallback.h", | |
| 65 "SyncCallbackHelper.h", | 65 "SyncCallbackHelper.h", |
| 66 "WorkerGlobalScopeFileSystem.cpp", | 66 "WorkerGlobalScopeFileSystem.cpp", |
| 67 "WorkerGlobalScopeFileSystem.h", | 67 "WorkerGlobalScopeFileSystem.h", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| OLD | NEW |