gecko-dev/toolkit/components/perfmonitoring/moz.build
Ryan VanderMeulen 0c009c0080 Backed out changeset 653179afb65f (bug 1175098) for frequent WinXP browser_compartments.js failures.
CLOSED TREE

--HG--
extra : amend_source : 281a11895a3ee742061158d49672d42a52146bad
2015-07-15 21:28:00 -04:00

37 lines
816 B
Python

# -*- Mode: python; c-basic-offset: 4; 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/.
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini']
FAIL_ON_WARNINGS = True
XPIDL_MODULE = 'toolkit_perfmonitoring'
EXTRA_JS_MODULES += [
'AddonWatcher.jsm',
'PerformanceStats-content.js',
'PerformanceStats.jsm',
]
XPIDL_SOURCES += [
'nsIPerformanceStats.idl',
]
UNIFIED_SOURCES += [
'nsPerformanceStats.cpp'
]
EXPORTS += [
'nsPerformanceStats.h'
]
LOCAL_INCLUDES += [
'/dom/base',
]
FINAL_LIBRARY = 'xul'