moz.build 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. EXPORTS.mozilla.dom += [
  6. 'Performance.h',
  7. 'PerformanceEntry.h',
  8. 'PerformanceMark.h',
  9. 'PerformanceMeasure.h',
  10. 'PerformanceNavigation.h',
  11. 'PerformanceNavigationTiming.h',
  12. 'PerformanceObserver.h',
  13. 'PerformanceObserverEntryList.h',
  14. 'PerformanceResourceTiming.h',
  15. 'PerformanceService.h',
  16. 'PerformanceTiming.h',
  17. ]
  18. SOURCES += [
  19. 'Performance.cpp',
  20. 'PerformanceEntry.cpp',
  21. 'PerformanceMainThread.cpp',
  22. 'PerformanceMark.cpp',
  23. 'PerformanceMeasure.cpp',
  24. 'PerformanceNavigation.cpp',
  25. 'PerformanceNavigationTiming.cpp',
  26. 'PerformanceObserver.cpp',
  27. 'PerformanceObserverEntryList.cpp',
  28. 'PerformanceResourceTiming.cpp',
  29. 'PerformanceService.cpp',
  30. 'PerformanceTiming.cpp',
  31. 'PerformanceWorker.cpp',
  32. ]
  33. LOCAL_INCLUDES += [
  34. '/dom/workers',
  35. ]
  36. MOCHITEST_MANIFESTS += [ 'tests/mochitest.ini' ]
  37. FINAL_LIBRARY = 'xul'