moz.build 742 B

1234567891011121314151617181920212223242526272829
  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. modules = []
  6. modules += [
  7. 'immutable.js',
  8. 'jsol.js',
  9. 'react-addons-shallow-compare.js',
  10. ]
  11. # react-dev is used if either debug mode is enabled,
  12. # so include it for both
  13. if CONFIG['DEBUG_JS_MODULES'] or CONFIG['MOZ_DEBUG']:
  14. modules += ['react-dev.js']
  15. modules += [
  16. 'react-dom.js',
  17. 'react-proxy.js',
  18. 'react-redux.js',
  19. 'react-virtualized.js',
  20. 'react.js',
  21. 'redux.js',
  22. 'reselect.js',
  23. 'seamless-immutable.js',
  24. ]
  25. DevToolsModules(*modules)