moz.build 644 B

1234567891011121314151617181920
  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. DIRS += [
  6. 'server',
  7. 'shared',
  8. ]
  9. if CONFIG['MOZ_DEVTOOLS']:
  10. DIRS += ['client']
  11. # /browser uses DIST_SUBDIR. We opt-in to this treatment when building
  12. # DevTools for the browser to keep the root omni.ja slim for use by external XUL
  13. # apps. Mulet also uses this since it includes /browser.
  14. if CONFIG['MOZ_PHOENIX']:
  15. DIST_SUBDIR = 'browser'
  16. export('DIST_SUBDIR')