summaryrefslogtreecommitdiffstats
path: root/js/src
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-11-03 19:08:56 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-11-03 19:08:56 -0500
commit957f19d2bd52e193882e098a529dddc326e63a44 (patch)
treeae8a367b46261bea992ef57674cb75b1635e8e95 /js/src
parentbc450dab41695f85290f83c53c2c6914c1710883 (diff)
downloadUXP-957f19d2bd52e193882e098a529dddc326e63a44.tar
UXP-957f19d2bd52e193882e098a529dddc326e63a44.tar.gz
UXP-957f19d2bd52e193882e098a529dddc326e63a44.tar.lz
UXP-957f19d2bd52e193882e098a529dddc326e63a44.tar.xz
UXP-957f19d2bd52e193882e098a529dddc326e63a44.zip
Issue #1676 - Part 9: Move DIRS down in js/src/moz.build
Diffstat (limited to 'js/src')
-rw-r--r--js/src/moz.build28
1 files changed, 13 insertions, 15 deletions
diff --git a/js/src/moz.build b/js/src/moz.build
index bcf768065..f3552db1c 100644
--- a/js/src/moz.build
+++ b/js/src/moz.build
@@ -7,21 +7,6 @@ include('js-config.mozbuild')
include('js-cxxflags.mozbuild')
include('js-testing.mozbuild')
-FILES_PER_UNIFIED_FILE = 6
-
-DIRS += [
- 'builtin',
- 'devtools',
- 'ds',
- 'frontend',
-]
-
-if CONFIG['JS_BUNDLED_EDITLINE']:
- DIRS += ['editline']
-
-if not CONFIG['JS_DISABLE_SHELL']:
- DIRS += ['shell']
-
CONFIGURE_SUBST_FILES += [
'js-config',
'js.pc',
@@ -117,6 +102,19 @@ EXPORTS.js += [
'../public/WeakMapPtr.h',
]
+DIRS += [
+ 'builtin',
+ 'devtools',
+ 'ds',
+ 'frontend',
+]
+
+if CONFIG['JS_BUNDLED_EDITLINE']:
+ DIRS += ['editline']
+
+if not CONFIG['JS_DISABLE_SHELL']:
+ DIRS += ['shell']
+
SOURCES += [
'gc/Allocator.cpp',
'gc/Barrier.cpp',