dom/filesystem/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/filesystem/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +EXPORTS.mozilla.dom += [
    1.11 +    'DeviceStorageFileSystem.h',
    1.12 +    'Directory.h',
    1.13 +    'FileSystemBase.h',
    1.14 +    'FileSystemRequestParent.h',
    1.15 +    'FileSystemTaskBase.h',
    1.16 +    'FileSystemUtils.h',
    1.17 +]
    1.18 +
    1.19 +SOURCES += [
    1.20 +    'CreateDirectoryTask.cpp',
    1.21 +    'CreateFileTask.cpp',
    1.22 +    'DeviceStorageFileSystem.cpp',
    1.23 +    'Directory.cpp',
    1.24 +    'FileSystemBase.cpp',
    1.25 +    'FileSystemPermissionRequest.cpp',
    1.26 +    'FileSystemRequestParent.cpp',
    1.27 +    'FileSystemTaskBase.cpp',
    1.28 +    'FileSystemUtils.cpp',
    1.29 +    'GetFileOrDirectoryTask.cpp',
    1.30 +    'RemoveTask.cpp',
    1.31 +]
    1.32 +
    1.33 +FINAL_LIBRARY = 'gklayout'
    1.34 +
    1.35 +IPDL_SOURCES += [
    1.36 +    'PFileSystemRequest.ipdl',
    1.37 +]
    1.38 +
    1.39 +include('/ipc/chromium/chromium-config.mozbuild')
    1.40 +
    1.41 +LOCAL_INCLUDES += [
    1.42 +    '/dom/base',
    1.43 +]
    1.44 +

mercurial