moz.build 611 B

123456789101112131415161718192021222324
  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. 'mozalloc',
  7. 'fallible',
  8. ]
  9. if not CONFIG['JS_STANDALONE']:
  10. DIRS += ['volatile']
  11. if CONFIG['MOZ_MEMORY']:
  12. # NB: gtest dir is included in toolkit/toolkit.build due to its dependency
  13. # on libxul.
  14. DIRS += [
  15. 'build',
  16. 'mozjemalloc',
  17. ]
  18. if CONFIG['MOZ_REPLACE_MALLOC']:
  19. DIRS += ['replace']