diff options
-rw-r--r-- | js/src/moz.build | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/js/src/moz.build b/js/src/moz.build index ac8e3165a4..35a7eaa0a0 100644 --- a/js/src/moz.build +++ b/js/src/moz.build @@ -7,6 +7,22 @@ include('js-config.mozbuild') include('js-cxxflags.mozbuild') include('js-testing.mozbuild') +DIRS += [ + 'builtin', + 'devtools', + 'ds', + 'frontend', +] + +if CONFIG['JS_BUNDLED_EDITLINE']: + DIRS += ['editline'] + +if CONFIG['JS_NEW_REGEXP']: + DIRS += ['new-regexp'] + +if not CONFIG['JS_DISABLE_SHELL']: + DIRS += ['shell'] + CONFIGURE_SUBST_FILES += [ 'js-config', 'js.pc', @@ -102,22 +118,6 @@ EXPORTS.js += [ '../public/WeakMapPtr.h', ] -DIRS += [ - 'builtin', - 'devtools', - 'ds', - 'frontend', -] - -if CONFIG['JS_BUNDLED_EDITLINE']: - DIRS += ['editline'] - -if CONFIG['JS_NEW_REGEXP']: - DIRS += ['new-regexp'] - -if not CONFIG['JS_DISABLE_SHELL']: - DIRS += ['shell'] - SOURCES += [ 'gc/Allocator.cpp', 'gc/Barrier.cpp', |