2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 13:19:09 -08:00
|
|
|
# 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/.
|
|
|
|
|
2013-08-02 00:03:47 -07:00
|
|
|
DIRS += [
|
|
|
|
'modules',
|
|
|
|
]
|
|
|
|
|
2014-02-06 13:00:20 -08:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochi/chrome.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2014-03-14 07:13:26 -07:00
|
|
|
SOURCES += [
|
|
|
|
'NativeOSFileInternals.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'toolkit_osfile'
|
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsINativeOSFileInternals.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'NativeOSFileInternals.h',
|
|
|
|
]
|
|
|
|
|
2013-08-02 00:03:25 -07:00
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
|
|
'osfile.jsm',
|
|
|
|
]
|
|
|
|
|
2014-07-22 16:37:51 -07:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-11-08 00:41:17 -08:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|