michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: TEST_DIRS += ['test'] michael@0: michael@0: EXPORTS += [ michael@0: 'nsIFileStorage.h', michael@0: ] michael@0: michael@0: EXPORTS.mozilla.dom.file += [ michael@0: 'ArchiveEvent.h', michael@0: 'ArchiveReader.h', michael@0: 'ArchiveRequest.h', michael@0: 'ArchiveZipEvent.h', michael@0: 'ArchiveZipFile.h', michael@0: 'File.h', michael@0: 'FileCommon.h', michael@0: 'FileHandle.h', michael@0: 'FileHelper.h', michael@0: 'FileRequest.h', michael@0: 'FileService.h', michael@0: 'LockedFile.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'ArchiveEvent.cpp', michael@0: 'ArchiveReader.cpp', michael@0: 'ArchiveRequest.cpp', michael@0: 'ArchiveZipEvent.cpp', michael@0: 'ArchiveZipFile.cpp', michael@0: 'AsyncHelper.cpp', michael@0: 'File.cpp', michael@0: 'FileHandle.cpp', michael@0: 'FileHelper.cpp', michael@0: 'FileRequest.cpp', michael@0: 'FileService.cpp', michael@0: 'FileStreamWrappers.cpp', michael@0: 'LockedFile.cpp', michael@0: 'MemoryStreams.cpp', michael@0: 'MetadataHelper.cpp', michael@0: ] michael@0: michael@0: FAIL_ON_WARNINGS = True michael@0: michael@0: LOCAL_INCLUDES += [ michael@0: '../base', michael@0: ] michael@0: michael@0: FINAL_LIBRARY = 'gklayout'