summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-09-05 13:15:38 +0000
committerMoonchild <moonchild@palemoon.org>2022-09-05 13:15:38 +0000
commit55c83585d0d865d42efaae9fde877044763c87fa (patch)
tree25141cb8d5cfd509e84ea809c700ca0f85bd2f6a
parent0ac1b3892008801d4412ec1f12e09bd493b470ca (diff)
downloaduxp-55c83585d0d865d42efaae9fde877044763c87fa.tar.gz
Revert "Issue #1676 - Part 11: Split irregexp sources out of js/src/moz.build"
This reverts commit 3d9bf5d7a32eb7076ad4e1782ca677981efff150.
-rw-r--r--js/src/irregexp/moz.build23
-rw-r--r--js/src/moz.build9
2 files changed, 8 insertions, 24 deletions
diff --git a/js/src/irregexp/moz.build b/js/src/irregexp/moz.build
deleted file mode 100644
index fc4fe62188..0000000000
--- a/js/src/irregexp/moz.build
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-include('../js-config.mozbuild')
-include('../js-cxxflags.mozbuild')
-
-FINAL_LIBRARY = "js"
-
-# Includes should be relative to parent path
-LOCAL_INCLUDES += ["!..", ".."]
-
-SOURCES += [
- 'NativeRegExpMacroAssembler.cpp',
- 'RegExpAST.cpp',
- 'RegExpCharacters.cpp',
- 'RegExpEngine.cpp',
- 'RegExpInterpreter.cpp',
- 'RegExpMacroAssembler.cpp',
- 'RegExpParser.cpp',
- 'RegExpStack.cpp',
-] \ No newline at end of file
diff --git a/js/src/moz.build b/js/src/moz.build
index 68fbaabb15..f83f141964 100644
--- a/js/src/moz.build
+++ b/js/src/moz.build
@@ -108,7 +108,6 @@ DIRS += [
'ds',
'frontend',
'gc',
- 'irregexp',
]
if CONFIG['JS_BUNDLED_EDITLINE']:
@@ -121,6 +120,14 @@ if not CONFIG['JS_DISABLE_SHELL']:
DIRS += ['shell']
SOURCES += [
+ 'irregexp/NativeRegExpMacroAssembler.cpp',
+ 'irregexp/RegExpAST.cpp',
+ 'irregexp/RegExpCharacters.cpp',
+ 'irregexp/RegExpEngine.cpp',
+ 'irregexp/RegExpInterpreter.cpp',
+ 'irregexp/RegExpMacroAssembler.cpp',
+ 'irregexp/RegExpParser.cpp',
+ 'irregexp/RegExpStack.cpp',
'jit/AliasAnalysis.cpp',
'jit/AliasAnalysisShared.cpp',
'jit/AlignmentMaskAnalysis.cpp',