|
1 # -*- Mode: python; c-basic-offset: 4; 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 TEST_DIRS += ['test'] |
|
8 |
|
9 EXPORTS += [ |
|
10 'nsIFileStorage.h', |
|
11 ] |
|
12 |
|
13 EXPORTS.mozilla.dom.file += [ |
|
14 'ArchiveEvent.h', |
|
15 'ArchiveReader.h', |
|
16 'ArchiveRequest.h', |
|
17 'ArchiveZipEvent.h', |
|
18 'ArchiveZipFile.h', |
|
19 'File.h', |
|
20 'FileCommon.h', |
|
21 'FileHandle.h', |
|
22 'FileHelper.h', |
|
23 'FileRequest.h', |
|
24 'FileService.h', |
|
25 'LockedFile.h', |
|
26 ] |
|
27 |
|
28 UNIFIED_SOURCES += [ |
|
29 'ArchiveEvent.cpp', |
|
30 'ArchiveReader.cpp', |
|
31 'ArchiveRequest.cpp', |
|
32 'ArchiveZipEvent.cpp', |
|
33 'ArchiveZipFile.cpp', |
|
34 'AsyncHelper.cpp', |
|
35 'File.cpp', |
|
36 'FileHandle.cpp', |
|
37 'FileHelper.cpp', |
|
38 'FileRequest.cpp', |
|
39 'FileService.cpp', |
|
40 'FileStreamWrappers.cpp', |
|
41 'LockedFile.cpp', |
|
42 'MemoryStreams.cpp', |
|
43 'MetadataHelper.cpp', |
|
44 ] |
|
45 |
|
46 FAIL_ON_WARNINGS = True |
|
47 |
|
48 LOCAL_INCLUDES += [ |
|
49 '../base', |
|
50 ] |
|
51 |
|
52 FINAL_LIBRARY = 'gklayout' |