Bug 1472840 [wpt PR 11759] - [css-logical] Implement flow-relative margin, padding...
[gecko.git] / dom / filehandle / moz.build
blob95080923c263f110b5e95c307060c9ab10a93a13
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/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "DOM")
10 EXPORTS.mozilla.dom.filehandle += [
11     'ActorsParent.h',
12     'SerializationHelpers.h',
15 EXPORTS.mozilla.dom += [
16     'FileHandleStorage.h',
19 UNIFIED_SOURCES += [
20     'ActorsParent.cpp',
23 IPDL_SOURCES += [
24     'PBackgroundFileHandle.ipdl',
25     'PBackgroundFileRequest.ipdl',
26     'PBackgroundMutableFile.ipdl',
29 include('/ipc/chromium/chromium-config.mozbuild')
31 LOCAL_INCLUDES += [
32     '../base',
35 FINAL_LIBRARY = 'xul'
37 LOCAL_INCLUDES += [
38     '/xpcom/threads',