diff options
Diffstat (limited to 'toolkit/components/perfmonitoring/moz.build')
-rw-r--r-- | toolkit/components/perfmonitoring/moz.build | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/toolkit/components/perfmonitoring/moz.build b/toolkit/components/perfmonitoring/moz.build index 1effe5f00..53c73803e 100644 --- a/toolkit/components/perfmonitoring/moz.build +++ b/toolkit/components/perfmonitoring/moz.build @@ -4,10 +4,16 @@ # 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/. -BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini'] - XPIDL_MODULE = 'toolkit_perfmonitoring' +XPIDL_SOURCES += ['nsIPerformanceStats.idl'] + +EXPORTS += ['nsPerformanceStats.h'] + +LOCAL_INCLUDES += ['/dom/base'] + +UNIFIED_SOURCES += ['nsPerformanceStats.cpp'] + EXTRA_JS_MODULES += [ 'AddonWatcher.jsm', 'PerformanceStats-content.js', @@ -16,20 +22,4 @@ EXTRA_JS_MODULES += [ 'PerformanceWatcher.jsm', ] -XPIDL_SOURCES += [ - 'nsIPerformanceStats.idl', -] - -UNIFIED_SOURCES += [ - 'nsPerformanceStats.cpp' -] - -EXPORTS += [ - 'nsPerformanceStats.h' -] - -LOCAL_INCLUDES += [ - '/dom/base', -] - FINAL_LIBRARY = 'xul' |