diff options
Diffstat (limited to 'js/src/moz.build')
-rw-r--r-- | js/src/moz.build | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/js/src/moz.build b/js/src/moz.build index ca8d95b643..bcf7680650 100644 --- a/js/src/moz.build +++ b/js/src/moz.build @@ -13,6 +13,7 @@ DIRS += [ 'builtin', 'devtools', 'ds', + 'frontend', ] if CONFIG['JS_BUNDLED_EDITLINE']: @@ -117,12 +118,6 @@ EXPORTS.js += [ ] SOURCES += [ - 'frontend/BytecodeCompiler.cpp', - 'frontend/BytecodeEmitter.cpp', - 'frontend/FoldConstants.cpp', - 'frontend/NameFunctions.cpp', - 'frontend/ParseNode.cpp', - 'frontend/TokenStream.cpp', 'gc/Allocator.cpp', 'gc/Barrier.cpp', 'gc/GCTrace.cpp', @@ -328,8 +323,6 @@ SOURCES += [ # jsarray.cpp and jsatom.cpp cannot be built in unified mode because # xpcshell is broken during packaging when compiled with gcc-4.8.2 -# frontend/Parser.cpp cannot be built in unified mode because of explicit -# template instantiations. # jsdtoa.cpp cannot be built in unified mode because we want to suppress # compiler warnings in third-party dtoa.c. # jsmath.cpp cannot be built in unified mode because it needs to pull rand_s @@ -340,7 +333,6 @@ SOURCES += [ # instantiations may or may not be needed depending on what it gets bundled # with. SOURCES += [ - 'frontend/Parser.cpp', 'gc/StoreBuffer.cpp', 'jsarray.cpp', 'jsatom.cpp', @@ -550,13 +542,6 @@ else: 'perf/pm_stub.cpp' ] -GENERATED_FILES += ['frontend/ReservedWordsGenerated.h'] -ReservedWordsGenerated = GENERATED_FILES['frontend/ReservedWordsGenerated.h'] -ReservedWordsGenerated.script = 'frontend/GenerateReservedWords.py' -ReservedWordsGenerated.inputs += [ - 'frontend/ReservedWords.h' -] - # JavaScript must be built shared, even for static builds, as it is used by # other modules which are always built shared. Failure to do so results in # the js code getting copied into xpinstall and jsd as well as mozilla-bin, |