diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 20:26:51 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-11-04 20:28:06 -0500 |
commit | 19499014a36f2f27ac81d11495fdc5bdbd28ae25 (patch) | |
tree | e2147fb07540c98991423bc761b7bc4aee0961ee | |
parent | 78b3a722b4b91c2482fed60d7e970a3f57645456 (diff) | |
download | uxp-19499014a36f2f27ac81d11495fdc5bdbd28ae25.tar.gz |
Issue #1677 - Part 2: Add build files
-rw-r--r-- | js/moz.configure | 13 | ||||
-rw-r--r-- | js/src/moz.build | 3 | ||||
-rw-r--r-- | js/src/regexp/moz.build | 31 |
3 files changed, 47 insertions, 0 deletions
diff --git a/js/moz.configure b/js/moz.configure index 7687731f99..3bbaf01a3b 100644 --- a/js/moz.configure +++ b/js/moz.configure @@ -246,3 +246,16 @@ with only_when('--enable-compile-environment'): set_config('LIBFUZZER', enable_libfuzzer) set_define('LIBFUZZER', enable_libfuzzer) + +# Initial support for new regexp engine +# ================================================== + +js_option('--enable-new-regexp', default=False, help='Enable new regexp engine') + +@depends('--enable-new-regexp') +def enable_new_regexp(value): + if value: + return True + +set_config('JS_NEW_REGEXP', enable_new_regexp) +set_define('JS_NEW_REGEXP', enable_new_regexp) diff --git a/js/src/moz.build b/js/src/moz.build index f9e5233a9f..a6ee7b7375 100644 --- a/js/src/moz.build +++ b/js/src/moz.build @@ -122,6 +122,9 @@ if CONFIG['JS_HAS_CTYPES']: if CONFIG['JS_BUNDLED_EDITLINE']: DIRS += ['editline'] +if CONFIG['JS_NEW_REGEXP']: + DIRS += ['regexp'] + if not CONFIG['JS_DISABLE_SHELL']: DIRS += ['shell'] diff --git a/js/src/regexp/moz.build b/js/src/regexp/moz.build new file mode 100644 index 0000000000..f8fc99921e --- /dev/null +++ b/js/src/regexp/moz.build @@ -0,0 +1,31 @@ +# -*- 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 += [ + 'regexp-ast.cc', + 'regexp-bytecode-generator.cc', + 'regexp-bytecode-peephole.cc', + 'regexp-bytecodes.cc', + 'regexp-compiler-tonode.cc', + 'regexp-compiler.cc', + 'regexp-dotprinter.cc', + 'regexp-interpreter.cc', + 'regexp-macro-assembler-tracer.cc', + 'regexp-macro-assembler.cc', + 'regexp-parser.cc', + 'regexp-stack.cc', +] + +if CONFIG['ENABLE_INTL_API']: + CXXFLAGS += ['-DV8_INTL_SUPPORT'] + SOURCES += ['property-sequences.cc']
\ No newline at end of file |