mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
--HG-- extra : rebase_source : c09366fb93e5b0f72abe1e99d3094e3d96a934fb extra : intermediate-source : 5950c9d63c3b4fd63a25464a7b50944aaec7079f extra : source : ca1b9a2bcc4381795f556fea2fb59066567c30f3
39 lines
927 B
Python
39 lines
927 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DIRS += [
|
|
'modules',
|
|
]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochi/chrome.ini']
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
|
|
|
SOURCES += [
|
|
'NativeOSFileInternals.cpp',
|
|
]
|
|
|
|
XPIDL_MODULE = 'toolkit_osfile'
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsINativeOSFileInternals.idl',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'NativeOSFileInternals.h',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'osfile.jsm',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Toolkit', 'OS.File')
|
|
|
|
if (not CONFIG['HAVE_64BIT_BUILD'] and
|
|
CONFIG['ENABLE_CLANG_PLUGIN'] and CONFIG['CC_TYPE'] == 'clang-cl'):
|
|
AllowCompilerWarnings() # workaround for bug 1090497
|