moz.build 811 B

123456789101112131415161718192021222324252627282930313233
  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. SOURCES += [
  6. 'nsEmbeddingModule.cpp',
  7. ]
  8. FINAL_LIBRARY = 'xul'
  9. LOCAL_INCLUDES += [
  10. '../appstartup',
  11. '../commandhandler',
  12. '../find',
  13. '../printingui/ipc',
  14. '../webbrowserpersist',
  15. '../windowwatcher',
  16. ]
  17. if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
  18. DEFINES['PROXY_PRINTING'] = 1
  19. LOCAL_INCLUDES += [
  20. '../printingui/win',
  21. ]
  22. if CONFIG['MOZ_PDF_PRINTING']:
  23. DEFINES['PROXY_PRINTING'] = 1
  24. LOCAL_INCLUDES += [
  25. '../printingui/unixshared',
  26. ]
  27. include('/ipc/chromium/chromium-config.mozbuild')