summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-09-05 13:23:16 +0000
committerMoonchild <moonchild@palemoon.org>2022-09-05 13:23:16 +0000
commit821cba01be487c74753a6e729bfe3331d5117aae (patch)
treeced93e356451eeb04857f5bab39965ae8d455963
parent8d79be38cc08946f0cffae5eaaefae40167994ed (diff)
downloaduxp-821cba01be487c74753a6e729bfe3331d5117aae.tar.gz
Revert "Issue #1676 - Part 9: Move DIRS down in js/src/moz.build"
-rw-r--r--js/src/moz.build32
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',