moz.build (1068B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 EXPORTS.mozilla.dom += [ 8 "FileSystemDirectoryHandle.h", 9 "FileSystemDirectoryIterator.h", 10 "FileSystemFileHandle.h", 11 "FileSystemHandle.h", 12 "FileSystemManager.h", 13 "FileSystemSyncAccessHandle.h", 14 "FileSystemWritableFileStream.h", 15 ] 16 17 UNIFIED_SOURCES += [ 18 "FileSystemDirectoryHandle.cpp", 19 "FileSystemDirectoryIterator.cpp", 20 "FileSystemFileHandle.cpp", 21 "FileSystemHandle.cpp", 22 "FileSystemManager.cpp", 23 "FileSystemSyncAccessHandle.cpp", 24 "FileSystemWritableFileStream.cpp", 25 ] 26 27 LOCAL_INCLUDES += [ 28 "/dom/fs/child", 29 "/dom/fs/include", 30 "/netwerk/base", 31 ] 32 33 FINAL_LIBRARY = "xul" 34 35 include("/ipc/chromium/chromium-config.mozbuild") 36 37 # Add libFuzzer configuration directives 38 include("/tools/fuzzing/libfuzzer-config.mozbuild")