moz.build 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # -*- Mode: python; c-basic-offset: 4; 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. DIRS += [
  6. 'abouthome',
  7. 'certerror',
  8. 'dirprovider',
  9. 'downloads',
  10. 'feeds',
  11. 'fuel',
  12. 'newtab',
  13. 'pageinfo',
  14. 'places',
  15. 'permissions',
  16. 'preferences',
  17. 'privatebrowsing',
  18. 'search',
  19. 'sessionstore',
  20. 'shell',
  21. 'statusbar',
  22. ]
  23. if CONFIG['MOZ_SERVICES_SYNC']:
  24. DIRS += ['sync']
  25. DIRS += ['build']
  26. XPIDL_SOURCES += [
  27. 'nsIBrowserGlue.idl',
  28. 'nsIBrowserHandler.idl',
  29. ]
  30. XPIDL_MODULE = 'browsercompsbase'
  31. EXTRA_PP_COMPONENTS += [
  32. 'BrowserComponents.manifest',
  33. 'nsAboutRedirector.js',
  34. 'nsBrowserContentHandler.js',
  35. 'nsBrowserGlue.js',
  36. ]
  37. EXTRA_JS_MODULES += [
  38. 'distribution.js',
  39. ]