moz.build 643 B

123456789101112131415161718192021222324252627
  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. TEST_DIRS += ['test']
  6. XPIDL_SOURCES += [
  7. 'nsIStartupCache.idl',
  8. ]
  9. XPIDL_MODULE = 'startupcache'
  10. EXPORTS.mozilla.scache += [
  11. 'StartupCache.h',
  12. 'StartupCacheUtils.h',
  13. ]
  14. # These files cannot be built in unified mode because they rely on plarena.h.
  15. SOURCES += [
  16. 'StartupCache.cpp',
  17. 'StartupCacheModule.cpp',
  18. 'StartupCacheUtils.cpp',
  19. ]
  20. FINAL_LIBRARY = 'xul'