moz.build 742 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # vim: set filetype=python:
  3. # This Source Code Form is subject to the terms of the Mozilla Public
  4. # License, v. 2.0. If a copy of the MPL was not distributed with this
  5. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. with Files("**"):
  7. BUG_COMPONENT = ("Firefox", "Activity Streams: Newtab")
  8. BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
  9. SPHINX_TREES['docs'] = 'docs'
  10. XPCSHELL_TESTS_MANIFESTS += [
  11. 'test/xpcshell/xpcshell.ini',
  12. ]
  13. XPIDL_SOURCES += [
  14. 'nsIAboutNewTabService.idl',
  15. ]
  16. XPIDL_MODULE = 'browser-newtab'
  17. EXTRA_JS_MODULES += [
  18. 'AboutNewTabService.jsm',
  19. ]
  20. XPCOM_MANIFESTS += [
  21. 'components.conf',
  22. ]
  23. JAR_MANIFESTS += ['jar.mn']