Revert "Issue #1676 - Part 9: Move DIRS down in js/src/moz.build"

This commit is contained in:
Moonchild 2022-09-05 13:23:16 +00:00 committed by roytam1
commit 28392d5dca

View file

@ -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',