moz.build 752 B

1234567891011121314151617181920212223242526272829303132333435
  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 += [
  6. 'nsToolkitCompsCID.h',
  7. ]
  8. SOURCES += [
  9. 'nsToolkitCompsModule.cpp',
  10. ]
  11. FINAL_LIBRARY = 'xul'
  12. LOCAL_INCLUDES += [
  13. '../../xre',
  14. '../alerts',
  15. '../downloads',
  16. '../feeds',
  17. '../find',
  18. '../jsdownloads/src',
  19. '../perfmonitoring',
  20. '../protobuf',
  21. '../startup',
  22. '../statusfilter',
  23. '../typeaheadfind',
  24. '../url-classifier',
  25. ]
  26. if not CONFIG['MOZ_DISABLE_PARENTAL_CONTROLS']:
  27. LOCAL_INCLUDES += [
  28. '../parentalcontrols',
  29. ]