summaryrefslogtreecommitdiffstats
path: root/js/src/builtin/moz.build
blob: ebf9318db2b79fdd6f4edd078b9ef817fb8667ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- 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 += [
    'AtomicsObject.cpp',
    'Eval.cpp',
    'Intl.cpp',
    'MapObject.cpp',
    'ModuleObject.cpp',
    'Object.cpp',
    'Profilers.cpp',
    'Promise.cpp',
    'Reflect.cpp',
    'ReflectParse.cpp',
    'RegExp.cpp',
    'SIMD.cpp',
    'SymbolObject.cpp',
    'TestingFunctions.cpp',
    'TypedObject.cpp',
    'WeakMapObject.cpp',
    'WeakSetObject.cpp',
]

if CONFIG['_MSC_VER']:
    if CONFIG['CPU_ARCH'] == 'x86':
        SOURCES['RegExp.cpp'].no_pgo = True # Bug 772303

# Prepare self-hosted JS code for embedding
GENERATED_FILES += [('selfhosted.out.h', 'selfhosted.js')]
selfhosted = GENERATED_FILES[('selfhosted.out.h', 'selfhosted.js')]
selfhosted.script = 'embedjs.py:generate_selfhosted'
selfhosted.inputs = [
    '../js.msg',
    'TypedObjectConstants.h',
    'SelfHostingDefines.h',
    'Utilities.js',
    'Array.js',
    'AsyncIteration.js',
    'Classes.js',
    'Date.js',
    'Error.js',
    'Function.js',
    'Generator.js',
    'Intl.js',
    'IntlData.js',
    'Iterator.js',
    'Map.js',
    'Module.js',
    'Number.js',
    'Object.js',
    'Promise.js',
    'Reflect.js',
    'RegExp.js',
    'RegExpGlobalReplaceOpt.h.js',
    'RegExpLocalReplaceOpt.h.js',
    'String.js',
    'Set.js',
    'Sorting.js',
    'TypedArray.js',
    'TypedObject.js',
    'WeakMap.js',
    'WeakSet.js',
]