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 /js/src | |
parent | 78b3a722b4b91c2482fed60d7e970a3f57645456 (diff) | |
download | UXP-19499014a36f2f27ac81d11495fdc5bdbd28ae25.tar UXP-19499014a36f2f27ac81d11495fdc5bdbd28ae25.tar.gz UXP-19499014a36f2f27ac81d11495fdc5bdbd28ae25.tar.lz UXP-19499014a36f2f27ac81d11495fdc5bdbd28ae25.tar.xz UXP-19499014a36f2f27ac81d11495fdc5bdbd28ae25.zip |
Issue #1677 - Part 2: Add build files
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/moz.build | 3 | ||||
-rw-r--r-- | js/src/regexp/moz.build | 31 |
2 files changed, 34 insertions, 0 deletions
diff --git a/js/src/moz.build b/js/src/moz.build index f9e5233a9..a6ee7b737 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 000000000..f8fc99921 --- /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 |