| # Copyright 2012 the V8 project authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| { |
| 'variables': { |
| 'v8_code': 1, |
| 'v8_random_seed%': 314159265, |
| 'v8_vector_stores%': 0, |
| 'embed_script%': "", |
| 'warmup_script%': "", |
| 'v8_extra_library_files%': [], |
| 'v8_experimental_extra_library_files%': [], |
| 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', |
| 'v8_os_page_size%': 0, |
| 'v8_src': '../src', |
| 'v8_include': '../include', |
| 'v8_tools': '../tools', |
| }, |
| 'includes': ['toolchain.gypi', 'features.gypi', 'inspector.gypi'], |
| 'targets': [ |
| { |
| 'target_name': 'v8', |
| 'dependencies_traverse': 1, |
| 'dependencies': ['v8_maybe_snapshot', 'v8_dump_build_config#target'], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ['component=="shared_library"', { |
| 'type': '<(component)', |
| 'sources': [ |
| # Note: on non-Windows we still build this file so that gyp |
| # has some sources to link into the component. |
| '../src/v8dll-main.cc', |
| ], |
| 'include_dirs': [ |
| '..', |
| ], |
| 'defines': [ |
| 'BUILDING_V8_SHARED', |
| ], |
| 'direct_dependent_settings': { |
| 'defines': [ |
| 'USING_V8_SHARED', |
| ], |
| }, |
| 'conditions': [ |
| ['OS=="mac"', { |
| 'xcode_settings': { |
| 'OTHER_LDFLAGS': ['-dynamiclib', '-all_load'] |
| }, |
| }], |
| ['soname_version!=""', { |
| 'product_extension': 'so.<(soname_version)', |
| }], |
| ], |
| }, |
| { |
| 'type': 'none', |
| }], |
| ], |
| 'direct_dependent_settings': { |
| 'include_dirs': [ |
| '../include/', |
| ], |
| }, |
| }, |
| { |
| # This rule delegates to either v8_snapshot, v8_nosnapshot, or |
| # v8_external_snapshot, depending on the current variables. |
| # The intention is to make the 'calling' rules a bit simpler. |
| 'target_name': 'v8_maybe_snapshot', |
| 'type': 'none', |
| 'conditions': [ |
| ['v8_use_snapshot!="true"', { |
| # The dependency on v8_base should come from a transitive |
| # dependency however the Android toolchain requires libv8_base.a |
| # to appear before libv8_snapshot.a so it's listed explicitly. |
| 'dependencies': ['v8_base', 'v8_init', 'v8_nosnapshot'], |
| }], |
| ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', { |
| # The dependency on v8_base should come from a transitive |
| # dependency however the Android toolchain requires libv8_base.a |
| # to appear before libv8_snapshot.a so it's listed explicitly. |
| 'dependencies': ['v8_base', 'v8_snapshot'], |
| }], |
| ['v8_use_snapshot=="true" and v8_use_external_startup_data==1 and want_separate_host_toolset==0', { |
| 'dependencies': ['v8_base', 'v8_external_snapshot'], |
| 'inputs': [ '<(PRODUCT_DIR)/snapshot_blob.bin', ], |
| }], |
| ['v8_use_snapshot=="true" and v8_use_external_startup_data==1 and want_separate_host_toolset==1', { |
| 'dependencies': ['v8_base', 'v8_external_snapshot'], |
| 'target_conditions': [ |
| ['_toolset=="host"', { |
| 'inputs': [ |
| '<(PRODUCT_DIR)/snapshot_blob_host.bin', |
| ], |
| }, { |
| 'inputs': [ |
| '<(PRODUCT_DIR)/snapshot_blob.bin', |
| ], |
| }], |
| ], |
| }], |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ] |
| }, |
| { |
| 'target_name': 'v8_init', |
| 'type': 'static_library', |
| 'dependencies': [ |
| 'v8_initializers', |
| ], |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'include_dirs+': [ |
| '..', |
| '../include/', |
| ], |
| 'sources': [ |
| '../src/setup-isolate-full.cc', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_initializers', |
| 'type': 'static_library', |
| 'dependencies': [ |
| 'v8_base', |
| ], |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'include_dirs+': [ |
| '..', |
| '../include/', |
| ], |
| 'sources': [ |
| '../src/builtins/builtins-arguments-gen.cc', |
| '../src/builtins/builtins-arguments-gen.h', |
| '../src/builtins/builtins-array-gen.cc', |
| '../src/builtins/builtins-array-gen.h', |
| '../src/builtins/builtins-async-function-gen.cc', |
| '../src/builtins/builtins-async-gen.cc', |
| '../src/builtins/builtins-async-gen.h', |
| '../src/builtins/builtins-async-generator-gen.cc', |
| '../src/builtins/builtins-async-iterator-gen.cc', |
| '../src/builtins/builtins-boolean-gen.cc', |
| '../src/builtins/builtins-call-gen.cc', |
| '../src/builtins/builtins-call-gen.h', |
| '../src/builtins/builtins-collections-gen.cc', |
| '../src/builtins/builtins-console-gen.cc', |
| '../src/builtins/builtins-constructor-gen.cc', |
| '../src/builtins/builtins-constructor-gen.h', |
| '../src/builtins/builtins-constructor.h', |
| '../src/builtins/builtins-conversion-gen.cc', |
| '../src/builtins/builtins-date-gen.cc', |
| '../src/builtins/builtins-debug-gen.cc', |
| '../src/builtins/builtins-function-gen.cc', |
| '../src/builtins/builtins-generator-gen.cc', |
| '../src/builtins/builtins-global-gen.cc', |
| '../src/builtins/builtins-handler-gen.cc', |
| '../src/builtins/builtins-ic-gen.cc', |
| '../src/builtins/builtins-internal-gen.cc', |
| '../src/builtins/builtins-interpreter-gen.cc', |
| '../src/builtins/builtins-intl-gen.cc', |
| '../src/builtins/builtins-iterator-gen.h', |
| '../src/builtins/builtins-iterator-gen.cc', |
| '../src/builtins/builtins-math-gen.cc', |
| '../src/builtins/builtins-math-gen.h', |
| '../src/builtins/builtins-number-gen.cc', |
| '../src/builtins/builtins-object-gen.cc', |
| '../src/builtins/builtins-promise-gen.cc', |
| '../src/builtins/builtins-promise-gen.h', |
| '../src/builtins/builtins-proxy-gen.cc', |
| '../src/builtins/builtins-proxy-gen.h', |
| '../src/builtins/builtins-reflect-gen.cc', |
| '../src/builtins/builtins-regexp-gen.cc', |
| '../src/builtins/builtins-regexp-gen.h', |
| '../src/builtins/builtins-sharedarraybuffer-gen.cc', |
| '../src/builtins/builtins-string-gen.cc', |
| '../src/builtins/builtins-string-gen.h', |
| '../src/builtins/builtins-symbol-gen.cc', |
| '../src/builtins/builtins-typedarray-gen.cc', |
| '../src/builtins/builtins-utils-gen.h', |
| '../src/builtins/builtins-wasm-gen.cc', |
| '../src/builtins/setup-builtins-internal.cc', |
| '../src/heap/setup-heap-internal.cc', |
| '../src/ic/accessor-assembler.cc', |
| '../src/ic/accessor-assembler.h', |
| '../src/ic/binary-op-assembler.cc', |
| '../src/ic/binary-op-assembler.h', |
| '../src/ic/keyed-store-generic.cc', |
| '../src/ic/keyed-store-generic.h', |
| '../src/interpreter/interpreter-assembler.cc', |
| '../src/interpreter/interpreter-assembler.h', |
| '../src/interpreter/interpreter-generator.cc', |
| '../src/interpreter/interpreter-generator.h', |
| '../src/interpreter/interpreter-intrinsics-generator.cc', |
| '../src/interpreter/interpreter-intrinsics-generator.h', |
| '../src/interpreter/setup-interpreter-internal.cc', |
| '../src/interpreter/setup-interpreter.h', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ['v8_target_arch=="ia32"', { |
| 'sources': [ |
| '../src/builtins/ia32/builtins-ia32.cc', |
| ], |
| }], |
| ['v8_target_arch=="x64"', { |
| 'sources': [ |
| '../src/builtins/x64/builtins-x64.cc', |
| ], |
| }], |
| ['v8_target_arch=="arm"', { |
| 'sources': [ |
| '../src/builtins/arm/builtins-arm.cc', |
| ], |
| }], |
| ['v8_target_arch=="arm64"', { |
| 'sources': [ |
| '../src/builtins/arm64/builtins-arm64.cc', |
| ], |
| }], |
| ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', { |
| 'sources': [ |
| '../src/builtins/mips/builtins-mips.cc', |
| ], |
| }], |
| ['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', { |
| 'sources': [ |
| '../src/builtins/mips64/builtins-mips64.cc', |
| ], |
| }], |
| ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
| 'sources': [ |
| '../src/builtins/ppc/builtins-ppc.cc', |
| ], |
| }], |
| ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { |
| 'sources': [ |
| '../src/builtins/s390/builtins-s390.cc', |
| ], |
| }], |
| ['v8_enable_i18n_support==0', { |
| 'sources!': [ |
| '../src/builtins/builtins-intl-gen.cc', |
| ], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_snapshot', |
| 'type': 'static_library', |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| 'dependencies': [ |
| 'mksnapshot#host', |
| 'js2c#host', |
| ], |
| }, { |
| 'toolsets': ['target'], |
| 'dependencies': [ |
| 'mksnapshot', |
| 'js2c', |
| ], |
| }], |
| ['component=="shared_library"', { |
| 'defines': [ |
| 'BUILDING_V8_SHARED', |
| ], |
| 'direct_dependent_settings': { |
| 'defines': [ |
| 'USING_V8_SHARED', |
| ], |
| }, |
| }], |
| ], |
| 'dependencies': [ |
| 'v8_base', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| ], |
| 'sources': [ |
| '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
| '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
| '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
| '<(INTERMEDIATE_DIR)/snapshot.cc', |
| '../src/setup-isolate-deserialize.cc', |
| ], |
| 'actions': [ |
| { |
| 'action_name': 'run_mksnapshot', |
| 'inputs': [ |
| '<(mksnapshot_exec)', |
| ], |
| 'conditions': [ |
| ['embed_script!=""', { |
| 'inputs': [ |
| '<(embed_script)', |
| ], |
| }], |
| ['warmup_script!=""', { |
| 'inputs': [ |
| '<(warmup_script)', |
| ], |
| }], |
| ], |
| 'outputs': [ |
| '<(INTERMEDIATE_DIR)/snapshot.cc', |
| ], |
| 'variables': { |
| 'mksnapshot_flags': [], |
| 'conditions': [ |
| ['v8_random_seed!=0', { |
| 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], |
| }], |
| ['v8_vector_stores!=0', { |
| 'mksnapshot_flags': ['--vector-stores'], |
| }], |
| ], |
| }, |
| 'action': [ |
| '<(mksnapshot_exec)', |
| '<@(mksnapshot_flags)', |
| '--startup_src', '<@(INTERMEDIATE_DIR)/snapshot.cc', |
| '<(embed_script)', |
| '<(warmup_script)', |
| ], |
| }, |
| ], |
| }, |
| { |
| 'target_name': 'v8_nosnapshot', |
| 'type': 'static_library', |
| 'dependencies': [ |
| 'v8_base', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| ], |
| 'sources': [ |
| '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
| '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
| '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
| '../src/snapshot/snapshot-empty.cc', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| 'dependencies': ['js2c#host'], |
| }, { |
| 'toolsets': ['target'], |
| 'dependencies': ['js2c'], |
| }], |
| ['component=="shared_library"', { |
| 'defines': [ |
| 'BUILDING_V8_SHARED', |
| ], |
| }], |
| ] |
| }, |
| { |
| 'target_name': 'v8_external_snapshot', |
| 'type': 'static_library', |
| 'conditions': [ |
| [ 'v8_use_external_startup_data==1', { |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| 'dependencies': [ |
| 'mksnapshot#host', |
| 'js2c#host', |
| 'natives_blob', |
| ]}, { |
| 'toolsets': ['target'], |
| 'dependencies': [ |
| 'mksnapshot', |
| 'js2c', |
| 'natives_blob', |
| ], |
| }], |
| ['component=="shared_library"', { |
| 'defines': [ |
| 'BUILDING_V8_SHARED', |
| ], |
| 'direct_dependent_settings': { |
| 'defines': [ |
| 'USING_V8_SHARED', |
| ], |
| }, |
| }], |
| ], |
| 'dependencies': [ |
| 'v8_base', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| ], |
| 'sources': [ |
| '../src/setup-isolate-deserialize.cc', |
| '../src/snapshot/natives-external.cc', |
| '../src/snapshot/snapshot-external.cc', |
| ], |
| 'actions': [ |
| { |
| 'action_name': 'run_mksnapshot (external)', |
| 'inputs': [ |
| '<(mksnapshot_exec)', |
| ], |
| 'variables': { |
| 'mksnapshot_flags': [], |
| 'conditions': [ |
| ['v8_random_seed!=0', { |
| 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'], |
| }], |
| ['v8_vector_stores!=0', { |
| 'mksnapshot_flags': ['--vector-stores'], |
| }], |
| ['v8_os_page_size!=0', { |
| 'mksnapshot_flags': ['--v8_os_page_size', '<(v8_os_page_size)'], |
| }], |
| ], |
| }, |
| 'conditions': [ |
| ['embed_script!=""', { |
| 'inputs': [ |
| '<(embed_script)', |
| ], |
| }], |
| ['warmup_script!=""', { |
| 'inputs': [ |
| '<(warmup_script)', |
| ], |
| }], |
| ['want_separate_host_toolset==1', { |
| 'target_conditions': [ |
| ['_toolset=="host"', { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/snapshot_blob_host.bin', |
| ], |
| 'action': [ |
| '<(mksnapshot_exec)', |
| '<@(mksnapshot_flags)', |
| '--startup_blob', '<(PRODUCT_DIR)/snapshot_blob_host.bin', |
| '<(embed_script)', |
| '<(warmup_script)', |
| ], |
| }, { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/snapshot_blob.bin', |
| ], |
| 'action': [ |
| '<(mksnapshot_exec)', |
| '<@(mksnapshot_flags)', |
| '--startup_blob', '<(PRODUCT_DIR)/snapshot_blob.bin', |
| '<(embed_script)', |
| '<(warmup_script)', |
| ], |
| }], |
| ], |
| }, { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/snapshot_blob.bin', |
| ], |
| 'action': [ |
| '<(mksnapshot_exec)', |
| '<@(mksnapshot_flags)', |
| '--startup_blob', '<(PRODUCT_DIR)/snapshot_blob.bin', |
| '<(embed_script)', |
| '<(warmup_script)', |
| ], |
| }], |
| ], |
| }, |
| ], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_base', |
| 'type': 'static_library', |
| 'dependencies': [ |
| 'v8_libbase', |
| 'v8_libsampler', |
| 'inspector.gyp:protocol_generated_sources#target', |
| 'inspector.gyp:inspector_injected_script#target', |
| ], |
| 'objs': ['foo.o'], |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| '<(SHARED_INTERMEDIATE_DIR)' |
| ], |
| 'sources': [ |
| '<@(inspector_all_sources)', |
| '../include//v8-debug.h', |
| '../include//v8-platform.h', |
| '../include//v8-profiler.h', |
| '../include//v8-testing.h', |
| '../include//v8-util.h', |
| '../include//v8-value-serializer-version.h', |
| '../include//v8-version-string.h', |
| '../include//v8-version.h', |
| '../include//v8.h', |
| '../include//v8config.h', |
| '../src/accessors.cc', |
| '../src/accessors.h', |
| '../src/address-map.cc', |
| '../src/address-map.h', |
| '../src/allocation.cc', |
| '../src/allocation.h', |
| '../src/allocation-site-scopes.h', |
| '../src/api.cc', |
| '../src/api.h', |
| '../src/api-arguments-inl.h', |
| '../src/api-arguments.cc', |
| '../src/api-arguments.h', |
| '../src/api-natives.cc', |
| '../src/api-natives.h', |
| '../src/arguments.cc', |
| '../src/arguments.h', |
| '../src/asmjs/asm-js.cc', |
| '../src/asmjs/asm-js.h', |
| '../src/asmjs/asm-names.h', |
| '../src/asmjs/asm-parser.cc', |
| '../src/asmjs/asm-parser.h', |
| '../src/asmjs/asm-scanner.cc', |
| '../src/asmjs/asm-scanner.h', |
| '../src/asmjs/asm-types.cc', |
| '../src/asmjs/asm-types.h', |
| '../src/asmjs/switch-logic.h', |
| '../src/asmjs/switch-logic.cc', |
| '../src/assembler.cc', |
| '../src/assembler.h', |
| '../src/assembler-inl.h', |
| '../src/assert-scope.h', |
| '../src/assert-scope.cc', |
| '../src/ast/ast-function-literal-id-reindexer.cc', |
| '../src/ast/ast-function-literal-id-reindexer.h', |
| '../src/ast/ast-source-ranges.h', |
| '../src/ast/ast-traversal-visitor.h', |
| '../src/ast/ast-value-factory.cc', |
| '../src/ast/ast-value-factory.h', |
| '../src/ast/ast.cc', |
| '../src/ast/ast.h', |
| '../src/ast/compile-time-value.cc', |
| '../src/ast/compile-time-value.h', |
| '../src/ast/context-slot-cache.cc', |
| '../src/ast/context-slot-cache.h', |
| '../src/ast/modules.cc', |
| '../src/ast/modules.h', |
| '../src/ast/prettyprinter.cc', |
| '../src/ast/prettyprinter.h', |
| '../src/ast/scopes.cc', |
| '../src/ast/scopes.h', |
| '../src/ast/variables.cc', |
| '../src/ast/variables.h', |
| '../src/bailout-reason.cc', |
| '../src/bailout-reason.h', |
| '../src/basic-block-profiler.cc', |
| '../src/basic-block-profiler.h', |
| '../src/bignum-dtoa.cc', |
| '../src/bignum-dtoa.h', |
| '../src/bignum.cc', |
| '../src/bignum.h', |
| '../src/bit-vector.cc', |
| '../src/bit-vector.h', |
| '../src/bootstrapper.cc', |
| '../src/bootstrapper.h', |
| '../src/boxed-float.h', |
| '../src/builtins/builtins-api.cc', |
| '../src/builtins/builtins-arraybuffer.cc', |
| '../src/builtins/builtins-array.cc', |
| '../src/builtins/builtins-bigint.cc', |
| '../src/builtins/builtins-boolean.cc', |
| '../src/builtins/builtins-call.cc', |
| '../src/builtins/builtins-callsite.cc', |
| '../src/builtins/builtins-collections.cc', |
| '../src/builtins/builtins-console.cc', |
| '../src/builtins/builtins-constructor.h', |
| '../src/builtins/builtins-dataview.cc', |
| '../src/builtins/builtins-date.cc', |
| '../src/builtins/builtins-definitions.h', |
| '../src/builtins/builtins-descriptors.h', |
| '../src/builtins/builtins-error.cc', |
| '../src/builtins/builtins-function.cc', |
| '../src/builtins/builtins-global.cc', |
| '../src/builtins/builtins-internal.cc', |
| '../src/builtins/builtins-interpreter.cc', |
| '../src/builtins/builtins-json.cc', |
| '../src/builtins/builtins-math.cc', |
| '../src/builtins/builtins-number.cc', |
| '../src/builtins/builtins-object.cc', |
| '../src/builtins/builtins-promise.cc', |
| '../src/builtins/builtins-reflect.cc', |
| '../src/builtins/builtins-regexp.cc', |
| '../src/builtins/builtins-sharedarraybuffer.cc', |
| '../src/builtins/builtins-string.cc', |
| '../src/builtins/builtins-intl.cc', |
| '../src/builtins/builtins-intl.h', |
| '../src/builtins/builtins-symbol.cc', |
| '../src/builtins/builtins-typedarray.cc', |
| '../src/builtins/builtins-utils.h', |
| '../src/builtins/builtins.cc', |
| '../src/builtins/builtins.h', |
| '../src/cached-powers.cc', |
| '../src/cached-powers.h', |
| '../src/callable.h', |
| '../src/cancelable-task.cc', |
| '../src/cancelable-task.h', |
| '../src/char-predicates.cc', |
| '../src/char-predicates-inl.h', |
| '../src/char-predicates.h', |
| '../src/checks.h', |
| '../src/code-events.h', |
| '../src/code-factory.cc', |
| '../src/code-factory.h', |
| '../src/code-stub-assembler.cc', |
| '../src/code-stub-assembler.h', |
| '../src/code-stubs.cc', |
| '../src/code-stubs.h', |
| '../src/code-stubs-utils.h', |
| '../src/codegen.cc', |
| '../src/codegen.h', |
| '../src/collector.h', |
| '../src/compilation-cache.cc', |
| '../src/compilation-cache.h', |
| '../src/compilation-dependencies.cc', |
| '../src/compilation-dependencies.h', |
| '../src/compilation-info.cc', |
| '../src/compilation-info.h', |
| '../src/compilation-statistics.cc', |
| '../src/compilation-statistics.h', |
| '../src/compiler/access-builder.cc', |
| '../src/compiler/access-builder.h', |
| '../src/compiler/access-info.cc', |
| '../src/compiler/access-info.h', |
| '../src/compiler/all-nodes.cc', |
| '../src/compiler/all-nodes.h', |
| '../src/compiler/allocation-builder.h', |
| '../src/compiler/basic-block-instrumentor.cc', |
| '../src/compiler/basic-block-instrumentor.h', |
| '../src/compiler/branch-elimination.cc', |
| '../src/compiler/branch-elimination.h', |
| '../src/compiler/bytecode-analysis.cc', |
| '../src/compiler/bytecode-analysis.h', |
| '../src/compiler/bytecode-graph-builder.cc', |
| '../src/compiler/bytecode-graph-builder.h', |
| '../src/compiler/bytecode-liveness-map.cc', |
| '../src/compiler/bytecode-liveness-map.h', |
| '../src/compiler/c-linkage.cc', |
| '../src/compiler/checkpoint-elimination.cc', |
| '../src/compiler/checkpoint-elimination.h', |
| '../src/compiler/code-generator-impl.h', |
| '../src/compiler/code-generator.cc', |
| '../src/compiler/code-generator.h', |
| '../src/compiler/code-assembler.cc', |
| '../src/compiler/code-assembler.h', |
| '../src/compiler/common-node-cache.cc', |
| '../src/compiler/common-node-cache.h', |
| '../src/compiler/common-operator-reducer.cc', |
| '../src/compiler/common-operator-reducer.h', |
| '../src/compiler/common-operator.cc', |
| '../src/compiler/common-operator.h', |
| '../src/compiler/control-equivalence.cc', |
| '../src/compiler/control-equivalence.h', |
| '../src/compiler/control-flow-optimizer.cc', |
| '../src/compiler/control-flow-optimizer.h', |
| '../src/compiler/dead-code-elimination.cc', |
| '../src/compiler/dead-code-elimination.h', |
| '../src/compiler/diamond.h', |
| '../src/compiler/effect-control-linearizer.cc', |
| '../src/compiler/effect-control-linearizer.h', |
| '../src/compiler/escape-analysis.cc', |
| '../src/compiler/escape-analysis.h', |
| '../src/compiler/escape-analysis-reducer.cc', |
| '../src/compiler/escape-analysis-reducer.h', |
| '../src/compiler/frame.cc', |
| '../src/compiler/frame.h', |
| '../src/compiler/frame-elider.cc', |
| '../src/compiler/frame-elider.h', |
| '../src/compiler/frame-states.cc', |
| '../src/compiler/frame-states.h', |
| '../src/compiler/gap-resolver.cc', |
| '../src/compiler/gap-resolver.h', |
| '../src/compiler/graph-assembler.cc', |
| '../src/compiler/graph-assembler.h', |
| '../src/compiler/graph-reducer.cc', |
| '../src/compiler/graph-reducer.h', |
| '../src/compiler/graph-trimmer.cc', |
| '../src/compiler/graph-trimmer.h', |
| '../src/compiler/graph-visualizer.cc', |
| '../src/compiler/graph-visualizer.h', |
| '../src/compiler/graph.cc', |
| '../src/compiler/graph.h', |
| '../src/compiler/instruction-codes.h', |
| '../src/compiler/instruction-selector-impl.h', |
| '../src/compiler/instruction-selector.cc', |
| '../src/compiler/instruction-selector.h', |
| '../src/compiler/instruction-scheduler.cc', |
| '../src/compiler/instruction-scheduler.h', |
| '../src/compiler/instruction.cc', |
| '../src/compiler/instruction.h', |
| '../src/compiler/int64-lowering.cc', |
| '../src/compiler/int64-lowering.h', |
| '../src/compiler/js-builtin-reducer.cc', |
| '../src/compiler/js-builtin-reducer.h', |
| '../src/compiler/js-call-reducer.cc', |
| '../src/compiler/js-call-reducer.h', |
| '../src/compiler/js-context-specialization.cc', |
| '../src/compiler/js-context-specialization.h', |
| '../src/compiler/js-create-lowering.cc', |
| '../src/compiler/js-create-lowering.h', |
| '../src/compiler/js-generic-lowering.cc', |
| '../src/compiler/js-generic-lowering.h', |
| '../src/compiler/js-graph.cc', |
| '../src/compiler/js-graph.h', |
| '../src/compiler/js-inlining.cc', |
| '../src/compiler/js-inlining.h', |
| '../src/compiler/js-inlining-heuristic.cc', |
| '../src/compiler/js-inlining-heuristic.h', |
| '../src/compiler/js-intrinsic-lowering.cc', |
| '../src/compiler/js-intrinsic-lowering.h', |
| '../src/compiler/js-native-context-specialization.cc', |
| '../src/compiler/js-native-context-specialization.h', |
| '../src/compiler/js-operator.cc', |
| '../src/compiler/js-operator.h', |
| '../src/compiler/js-type-hint-lowering.cc', |
| '../src/compiler/js-type-hint-lowering.h', |
| '../src/compiler/js-typed-lowering.cc', |
| '../src/compiler/js-typed-lowering.h', |
| '../src/compiler/jump-threading.cc', |
| '../src/compiler/jump-threading.h', |
| '../src/compiler/linkage.cc', |
| '../src/compiler/linkage.h', |
| '../src/compiler/live-range-separator.cc', |
| '../src/compiler/live-range-separator.h', |
| '../src/compiler/load-elimination.cc', |
| '../src/compiler/load-elimination.h', |
| '../src/compiler/loop-analysis.cc', |
| '../src/compiler/loop-analysis.h', |
| '../src/compiler/loop-peeling.cc', |
| '../src/compiler/loop-peeling.h', |
| '../src/compiler/loop-variable-optimizer.cc', |
| '../src/compiler/loop-variable-optimizer.h', |
| '../src/compiler/machine-operator-reducer.cc', |
| '../src/compiler/machine-operator-reducer.h', |
| '../src/compiler/machine-operator.cc', |
| '../src/compiler/machine-operator.h', |
| '../src/compiler/machine-graph-verifier.cc', |
| '../src/compiler/machine-graph-verifier.h', |
| '../src/compiler/memory-optimizer.cc', |
| '../src/compiler/memory-optimizer.h', |
| '../src/compiler/move-optimizer.cc', |
| '../src/compiler/move-optimizer.h', |
| '../src/compiler/node-aux-data.h', |
| '../src/compiler/node-cache.cc', |
| '../src/compiler/node-cache.h', |
| '../src/compiler/node-marker.cc', |
| '../src/compiler/node-marker.h', |
| '../src/compiler/node-matchers.cc', |
| '../src/compiler/node-matchers.h', |
| '../src/compiler/node-properties.cc', |
| '../src/compiler/node-properties.h', |
| '../src/compiler/node.cc', |
| '../src/compiler/node.h', |
| '../src/compiler/opcodes.cc', |
| '../src/compiler/opcodes.h', |
| '../src/compiler/operation-typer.cc', |
| '../src/compiler/operation-typer.h', |
| '../src/compiler/operator-properties.cc', |
| '../src/compiler/operator-properties.h', |
| '../src/compiler/operator.cc', |
| '../src/compiler/operator.h', |
| '../src/compiler/osr.cc', |
| '../src/compiler/osr.h', |
| '../src/compiler/persistent-map.h', |
| '../src/compiler/pipeline.cc', |
| '../src/compiler/pipeline.h', |
| '../src/compiler/pipeline-statistics.cc', |
| '../src/compiler/pipeline-statistics.h', |
| '../src/compiler/property-access-builder.cc', |
| '../src/compiler/property-access-builder.h', |
| '../src/compiler/raw-machine-assembler.cc', |
| '../src/compiler/raw-machine-assembler.h', |
| '../src/compiler/redundancy-elimination.cc', |
| '../src/compiler/redundancy-elimination.h', |
| '../src/compiler/register-allocator.cc', |
| '../src/compiler/register-allocator.h', |
| '../src/compiler/register-allocator-verifier.cc', |
| '../src/compiler/register-allocator-verifier.h', |
| '../src/compiler/representation-change.cc', |
| '../src/compiler/representation-change.h', |
| '../src/compiler/schedule.cc', |
| '../src/compiler/schedule.h', |
| '../src/compiler/scheduler.cc', |
| '../src/compiler/scheduler.h', |
| '../src/compiler/select-lowering.cc', |
| '../src/compiler/select-lowering.h', |
| '../src/compiler/simd-scalar-lowering.cc', |
| '../src/compiler/simd-scalar-lowering.h', |
| '../src/compiler/simplified-lowering.cc', |
| '../src/compiler/simplified-lowering.h', |
| '../src/compiler/simplified-operator-reducer.cc', |
| '../src/compiler/simplified-operator-reducer.h', |
| '../src/compiler/simplified-operator.cc', |
| '../src/compiler/simplified-operator.h', |
| '../src/compiler/compiler-source-position-table.cc', |
| '../src/compiler/compiler-source-position-table.h', |
| '../src/compiler/state-values-utils.cc', |
| '../src/compiler/state-values-utils.h', |
| '../src/compiler/store-store-elimination.cc', |
| '../src/compiler/store-store-elimination.h', |
| '../src/compiler/types.cc', |
| '../src/compiler/types.h', |
| '../src/compiler/type-cache.cc', |
| '../src/compiler/type-cache.h', |
| '../src/compiler/typed-optimization.cc', |
| '../src/compiler/typed-optimization.h', |
| '../src/compiler/typer.cc', |
| '../src/compiler/typer.h', |
| '../src/compiler/unwinding-info-writer.h', |
| '../src/compiler/value-numbering-reducer.cc', |
| '../src/compiler/value-numbering-reducer.h', |
| '../src/compiler/verifier.cc', |
| '../src/compiler/verifier.h', |
| '../src/compiler/wasm-compiler.cc', |
| '../src/compiler/wasm-compiler.h', |
| '../src/compiler/wasm-linkage.cc', |
| '../src/compiler/zone-stats.cc', |
| '../src/compiler/zone-stats.h', |
| '../src/compiler-dispatcher/compiler-dispatcher.cc', |
| '../src/compiler-dispatcher/compiler-dispatcher.h', |
| '../src/compiler-dispatcher/compiler-dispatcher-job.cc', |
| '../src/compiler-dispatcher/compiler-dispatcher-job.h', |
| '../src/compiler-dispatcher/compiler-dispatcher-tracer.cc', |
| '../src/compiler-dispatcher/compiler-dispatcher-tracer.h', |
| '../src/compiler-dispatcher/optimizing-compile-dispatcher.cc', |
| '../src/compiler-dispatcher/optimizing-compile-dispatcher.h', |
| '../src/compiler-dispatcher/unoptimized-compile-job.cc', |
| '../src/compiler-dispatcher/unoptimized-compile-job.h', |
| '../src/compiler.cc', |
| '../src/compiler.h', |
| '../src/contexts-inl.h', |
| '../src/contexts.cc', |
| '../src/contexts.h', |
| '../src/conversions-inl.h', |
| '../src/conversions.cc', |
| '../src/conversions.h', |
| '../src/counters-inl.h', |
| '../src/counters.cc', |
| '../src/counters.h', |
| '../src/date.cc', |
| '../src/date.h', |
| '../src/dateparser-inl.h', |
| '../src/dateparser.cc', |
| '../src/dateparser.h', |
| '../src/debug/debug-coverage.cc', |
| '../src/debug/debug-coverage.h', |
| '../src/debug/debug-evaluate.cc', |
| '../src/debug/debug-evaluate.h', |
| '../src/debug/debug-interface.h', |
| '../src/debug/debug-frames.cc', |
| '../src/debug/debug-frames.h', |
| '../src/debug/debug-scope-iterator.cc', |
| '../src/debug/debug-scope-iterator.h', |
| '../src/debug/debug-scopes.cc', |
| '../src/debug/debug-scopes.h', |
| '../src/debug/debug-stack-trace-iterator.cc', |
| '../src/debug/debug-stack-trace-iterator.h', |
| '../src/debug/debug-type-profile.cc', |
| '../src/debug/debug-type-profile.h', |
| '../src/debug/debug.cc', |
| '../src/debug/debug.h', |
| '../src/debug/interface-types.h', |
| '../src/debug/liveedit.cc', |
| '../src/debug/liveedit.h', |
| '../src/deoptimize-reason.cc', |
| '../src/deoptimize-reason.h', |
| '../src/deoptimizer.cc', |
| '../src/deoptimizer.h', |
| '../src/detachable-vector.h', |
| '../src/disasm.h', |
| '../src/disassembler.cc', |
| '../src/disassembler.h', |
| '../src/diy-fp.cc', |
| '../src/diy-fp.h', |
| '../src/double.h', |
| '../src/dtoa.cc', |
| '../src/dtoa.h', |
| '../src/eh-frame.cc', |
| '../src/eh-frame.h', |
| '../src/elements-kind.cc', |
| '../src/elements-kind.h', |
| '../src/elements.cc', |
| '../src/elements.h', |
| '../src/execution.cc', |
| '../src/execution.h', |
| '../src/extensions/externalize-string-extension.cc', |
| '../src/extensions/externalize-string-extension.h', |
| '../src/extensions/free-buffer-extension.cc', |
| '../src/extensions/free-buffer-extension.h', |
| '../src/extensions/gc-extension.cc', |
| '../src/extensions/gc-extension.h', |
| '../src/extensions/ignition-statistics-extension.cc', |
| '../src/extensions/ignition-statistics-extension.h', |
| '../src/extensions/statistics-extension.cc', |
| '../src/extensions/statistics-extension.h', |
| '../src/extensions/trigger-failure-extension.cc', |
| '../src/extensions/trigger-failure-extension.h', |
| '../src/external-reference-table.cc', |
| '../src/external-reference-table.h', |
| '../src/factory-inl.h', |
| '../src/factory.cc', |
| '../src/factory.h', |
| '../src/fast-dtoa.cc', |
| '../src/fast-dtoa.h', |
| '../src/feedback-vector-inl.h', |
| '../src/feedback-vector.cc', |
| '../src/feedback-vector.h', |
| '../src/field-index.h', |
| '../src/field-index-inl.h', |
| '../src/field-type.cc', |
| '../src/field-type.h', |
| '../src/fixed-dtoa.cc', |
| '../src/fixed-dtoa.h', |
| '../src/flag-definitions.h', |
| '../src/flags.cc', |
| '../src/flags.h', |
| '../src/frame-constants.h', |
| '../src/frames-inl.h', |
| '../src/frames.cc', |
| '../src/frames.h', |
| '../src/futex-emulation.cc', |
| '../src/futex-emulation.h', |
| '../src/gdb-jit.cc', |
| '../src/gdb-jit.h', |
| '../src/global-handles.cc', |
| '../src/global-handles.h', |
| '../src/globals.h', |
| '../src/handles-inl.h', |
| '../src/handles.cc', |
| '../src/handles.h', |
| '../src/heap-symbols.h', |
| '../src/heap/array-buffer-collector.cc', |
| '../src/heap/array-buffer-collector.h', |
| '../src/heap/array-buffer-tracker-inl.h', |
| '../src/heap/array-buffer-tracker.cc', |
| '../src/heap/array-buffer-tracker.h', |
| '../src/heap/barrier.h', |
| '../src/heap/code-stats.cc', |
| '../src/heap/code-stats.h', |
| '../src/heap/concurrent-marking.cc', |
| '../src/heap/concurrent-marking.h', |
| '../src/heap/embedder-tracing.cc', |
| '../src/heap/embedder-tracing.h', |
| '../src/heap/memory-reducer.cc', |
| '../src/heap/memory-reducer.h', |
| '../src/heap/gc-idle-time-handler.cc', |
| '../src/heap/gc-idle-time-handler.h', |
| '../src/heap/gc-tracer.cc', |
| '../src/heap/gc-tracer.h', |
| '../src/heap/heap-inl.h', |
| '../src/heap/heap.cc', |
| '../src/heap/heap.h', |
| '../src/heap/incremental-marking-inl.h', |
| '../src/heap/incremental-marking-job.cc', |
| '../src/heap/incremental-marking-job.h', |
| '../src/heap/incremental-marking.cc', |
| '../src/heap/incremental-marking.h', |
| '../src/heap/invalidated-slots-inl.h', |
| '../src/heap/invalidated-slots.cc', |
| '../src/heap/invalidated-slots.h', |
| '../src/heap/item-parallel-job.h', |
| '../src/heap/local-allocator.h', |
| '../src/heap/mark-compact-inl.h', |
| '../src/heap/mark-compact.cc', |
| '../src/heap/mark-compact.h', |
| '../src/heap/marking.cc', |
| '../src/heap/marking.h', |
| '../src/heap/object-stats.cc', |
| '../src/heap/object-stats.h', |
| '../src/heap/objects-visiting-inl.h', |
| '../src/heap/objects-visiting.cc', |
| '../src/heap/objects-visiting.h', |
| '../src/heap/remembered-set.h', |
| '../src/heap/scavenge-job.h', |
| '../src/heap/scavenge-job.cc', |
| '../src/heap/scavenger-inl.h', |
| '../src/heap/scavenger.cc', |
| '../src/heap/scavenger.h', |
| '../src/heap/slot-set.h', |
| '../src/heap/spaces-inl.h', |
| '../src/heap/spaces.cc', |
| '../src/heap/spaces.h', |
| '../src/heap/store-buffer.cc', |
| '../src/heap/store-buffer.h', |
| '../src/heap/stress-marking-observer.cc', |
| '../src/heap/stress-marking-observer.h', |
| '../src/heap/stress-scavenge-observer.cc', |
| '../src/heap/stress-scavenge-observer.h', |
| '../src/heap/sweeper.cc', |
| '../src/heap/sweeper.h', |
| '../src/heap/worklist.h', |
| '../src/intl.cc', |
| '../src/intl.h', |
| '../src/icu_util.cc', |
| '../src/icu_util.h', |
| '../src/ic/call-optimization.cc', |
| '../src/ic/call-optimization.h', |
| '../src/ic/handler-configuration.cc', |
| '../src/ic/handler-configuration-inl.h', |
| '../src/ic/handler-configuration.h', |
| '../src/ic/ic-inl.h', |
| '../src/ic/ic-stats.cc', |
| '../src/ic/ic-stats.h', |
| '../src/ic/ic.cc', |
| '../src/ic/ic.h', |
| '../src/identity-map.cc', |
| '../src/identity-map.h', |
| '../src/interface-descriptors.cc', |
| '../src/interface-descriptors.h', |
| '../src/interpreter/block-coverage-builder.h', |
| '../src/interpreter/bytecodes.cc', |
| '../src/interpreter/bytecodes.h', |
| '../src/interpreter/bytecode-array-accessor.cc', |
| '../src/interpreter/bytecode-array-accessor.h', |
| '../src/interpreter/bytecode-array-builder.cc', |
| '../src/interpreter/bytecode-array-builder.h', |
| '../src/interpreter/bytecode-array-iterator.cc', |
| '../src/interpreter/bytecode-array-iterator.h', |
| '../src/interpreter/bytecode-array-random-iterator.cc', |
| '../src/interpreter/bytecode-array-random-iterator.h', |
| '../src/interpreter/bytecode-array-writer.cc', |
| '../src/interpreter/bytecode-array-writer.h', |
| '../src/interpreter/bytecode-decoder.cc', |
| '../src/interpreter/bytecode-decoder.h', |
| '../src/interpreter/bytecode-flags.cc', |
| '../src/interpreter/bytecode-flags.h', |
| '../src/interpreter/bytecode-generator.cc', |
| '../src/interpreter/bytecode-generator.h', |
| '../src/interpreter/bytecode-label.cc', |
| '../src/interpreter/bytecode-label.h', |
| '../src/interpreter/bytecode-node.cc', |
| '../src/interpreter/bytecode-node.h', |
| '../src/interpreter/bytecode-operands.cc', |
| '../src/interpreter/bytecode-operands.h', |
| '../src/interpreter/bytecode-register.cc', |
| '../src/interpreter/bytecode-register.h', |
| '../src/interpreter/bytecode-register-allocator.h', |
| '../src/interpreter/bytecode-register-optimizer.cc', |
| '../src/interpreter/bytecode-register-optimizer.h', |
| '../src/interpreter/bytecode-source-info.cc', |
| '../src/interpreter/bytecode-source-info.h', |
| '../src/interpreter/bytecode-jump-table.h', |
| '../src/interpreter/bytecode-traits.h', |
| '../src/interpreter/constant-array-builder.cc', |
| '../src/interpreter/constant-array-builder.h', |
| '../src/interpreter/control-flow-builders.cc', |
| '../src/interpreter/control-flow-builders.h', |
| '../src/interpreter/handler-table-builder.cc', |
| '../src/interpreter/handler-table-builder.h', |
| '../src/interpreter/interpreter.cc', |
| '../src/interpreter/interpreter.h', |
| '../src/interpreter/interpreter-generator.h', |
| '../src/interpreter/interpreter-intrinsics.cc', |
| '../src/interpreter/interpreter-intrinsics.h', |
| '../src/isolate-inl.h', |
| '../src/isolate.cc', |
| '../src/isolate.h', |
| '../src/json-parser.cc', |
| '../src/json-parser.h', |
| '../src/json-stringifier.cc', |
| '../src/json-stringifier.h', |
| '../src/keys.h', |
| '../src/keys.cc', |
| '../src/label.h', |
| '../src/layout-descriptor-inl.h', |
| '../src/layout-descriptor.cc', |
| '../src/layout-descriptor.h', |
| '../src/locked-queue-inl.h', |
| '../src/locked-queue.h', |
| '../src/log-inl.h', |
| '../src/log-utils.cc', |
| '../src/log-utils.h', |
| '../src/log.cc', |
| '../src/log.h', |
| '../src/lookup-cache-inl.h', |
| '../src/lookup-cache.cc', |
| '../src/lookup-cache.h', |
| '../src/lookup.cc', |
| '../src/lookup.h', |
| '../src/map-updater.cc', |
| '../src/map-updater.h', |
| '../src/macro-assembler-inl.h', |
| '../src/macro-assembler.h', |
| '../src/machine-type.cc', |
| '../src/machine-type.h', |
| '../src/managed.h', |
| '../src/messages.cc', |
| '../src/messages.h', |
| '../src/msan.h', |
| '../src/objects-body-descriptors-inl.h', |
| '../src/objects-body-descriptors.h', |
| '../src/objects-debug.cc', |
| '../src/objects-inl.h', |
| '../src/objects-printer.cc', |
| '../src/objects.cc', |
| '../src/objects.h', |
| '../src/objects/arguments-inl.h', |
| '../src/objects/arguments.h', |
| '../src/objects/bigint.cc', |
| '../src/objects/bigint.h', |
| '../src/objects/code-inl.h', |
| '../src/objects/code.h', |
| '../src/objects/compilation-cache.h', |
| '../src/objects/compilation-cache-inl.h', |
| '../src/objects/data-handler.h', |
| '../src/objects/data-handler-inl.h', |
| '../src/objects/debug-objects-inl.h', |
| '../src/objects/debug-objects.cc', |
| '../src/objects/debug-objects.h', |
| '../src/objects/descriptor-array.h', |
| '../src/objects/dictionary.h', |
| '../src/objects/fixed-array.h', |
| '../src/objects/fixed-array-inl.h', |
| '../src/objects/frame-array.h', |
| '../src/objects/frame-array-inl.h', |
| '../src/objects/hash-table-inl.h', |
| '../src/objects/hash-table.h', |
| '../src/objects/intl-objects.cc', |
| '../src/objects/intl-objects.h', |
| '../src/objects/js-array.h', |
| '../src/objects/js-array-inl.h', |
| '../src/objects/js-collection.h', |
| '../src/objects/js-collection-inl.h', |
| '../src/objects/js-regexp.h', |
| '../src/objects/js-regexp-inl.h', |
| '../src/objects/literal-objects.cc', |
| '../src/objects/literal-objects-inl.h', |
| '../src/objects/literal-objects.h', |
| '../src/objects/map-inl.h', |
| '../src/objects/map.h', |
| '../src/objects/name-inl.h', |
| '../src/objects/name.h', |
| '../src/objects/module-inl.h', |
| '../src/objects/module.cc', |
| '../src/objects/module.h', |
| '../src/objects/object-macros.h', |
| '../src/objects/object-macros-undef.h', |
| '../src/objects/property-descriptor-object.h', |
| '../src/objects/property-descriptor-object-inl.h', |
| '../src/objects/regexp-match-info.h', |
| '../src/objects/scope-info.cc', |
| '../src/objects/scope-info.h', |
| '../src/objects/script.h', |
| '../src/objects/script-inl.h', |
| '../src/objects/shared-function-info-inl.h', |
| '../src/objects/shared-function-info.h', |
| '../src/objects/string-inl.h', |
| '../src/objects/string.h', |
| '../src/objects/string-table.h', |
| '../src/objects/template-objects.cc', |
| '../src/objects/template-objects.h', |
| '../src/ostreams.cc', |
| '../src/ostreams.h', |
| '../src/parsing/background-parsing-task.cc', |
| '../src/parsing/background-parsing-task.h', |
| '../src/parsing/duplicate-finder.h', |
| '../src/parsing/expression-classifier.h', |
| '../src/parsing/expression-scope-reparenter.cc', |
| '../src/parsing/expression-scope-reparenter.h', |
| '../src/parsing/func-name-inferrer.cc', |
| '../src/parsing/func-name-inferrer.h', |
| '../src/parsing/parse-info.cc', |
| '../src/parsing/parse-info.h', |
| '../src/parsing/parser-base.h', |
| '../src/parsing/parser.cc', |
| '../src/parsing/parser.h', |
| '../src/parsing/parsing.cc', |
| '../src/parsing/parsing.h', |
| '../src/parsing/pattern-rewriter.cc', |
| '../src/parsing/preparse-data-format.h', |
| '../src/parsing/preparse-data.cc', |
| '../src/parsing/preparse-data.h', |
| '../src/parsing/preparsed-scope-data.cc', |
| '../src/parsing/preparsed-scope-data.h', |
| '../src/parsing/preparser.cc', |
| '../src/parsing/preparser.h', |
| '../src/parsing/rewriter.cc', |
| '../src/parsing/rewriter.h', |
| '../src/parsing/scanner-character-streams.cc', |
| '../src/parsing/scanner-character-streams.h', |
| '../src/parsing/scanner.cc', |
| '../src/parsing/scanner.h', |
| '../src/parsing/token.cc', |
| '../src/parsing/token.h', |
| '../src/pending-compilation-error-handler.cc', |
| '../src/pending-compilation-error-handler.h', |
| '../src/perf-jit.cc', |
| '../src/perf-jit.h', |
| '../src/profiler/allocation-tracker.cc', |
| '../src/profiler/allocation-tracker.h', |
| '../src/profiler/circular-queue-inl.h', |
| '../src/profiler/circular-queue.h', |
| '../src/profiler/cpu-profiler-inl.h', |
| '../src/profiler/cpu-profiler.cc', |
| '../src/profiler/cpu-profiler.h', |
| '../src/profiler/heap-profiler.cc', |
| '../src/profiler/heap-profiler.h', |
| '../src/profiler/heap-snapshot-generator-inl.h', |
| '../src/profiler/heap-snapshot-generator.cc', |
| '../src/profiler/heap-snapshot-generator.h', |
| '../src/profiler/profiler-listener.cc', |
| '../src/profiler/profiler-listener.h', |
| '../src/profiler/profile-generator-inl.h', |
| '../src/profiler/profile-generator.cc', |
| '../src/profiler/profile-generator.h', |
| '../src/profiler/sampling-heap-profiler.cc', |
| '../src/profiler/sampling-heap-profiler.h', |
| '../src/profiler/strings-storage.cc', |
| '../src/profiler/strings-storage.h', |
| '../src/profiler/tick-sample.cc', |
| '../src/profiler/tick-sample.h', |
| '../src/profiler/tracing-cpu-profiler.cc', |
| '../src/profiler/tracing-cpu-profiler.h', |
| '../src/profiler/unbound-queue-inl.h', |
| '../src/profiler/unbound-queue.h', |
| '../src/property-descriptor.cc', |
| '../src/property-descriptor.h', |
| '../src/property-details.h', |
| '../src/property.cc', |
| '../src/property.h', |
| '../src/prototype.h', |
| '../src/regexp/bytecodes-irregexp.h', |
| '../src/regexp/interpreter-irregexp.cc', |
| '../src/regexp/interpreter-irregexp.h', |
| '../src/regexp/jsregexp-inl.h', |
| '../src/regexp/jsregexp.cc', |
| '../src/regexp/jsregexp.h', |
| '../src/regexp/regexp-ast.cc', |
| '../src/regexp/regexp-ast.h', |
| '../src/regexp/regexp-macro-assembler-irregexp-inl.h', |
| '../src/regexp/regexp-macro-assembler-irregexp.cc', |
| '../src/regexp/regexp-macro-assembler-irregexp.h', |
| '../src/regexp/regexp-macro-assembler-tracer.cc', |
| '../src/regexp/regexp-macro-assembler-tracer.h', |
| '../src/regexp/regexp-macro-assembler.cc', |
| '../src/regexp/regexp-macro-assembler.h', |
| '../src/regexp/regexp-parser.cc', |
| '../src/regexp/regexp-parser.h', |
| '../src/regexp/regexp-stack.cc', |
| '../src/regexp/regexp-stack.h', |
| '../src/regexp/regexp-utils.cc', |
| '../src/regexp/regexp-utils.h', |
| '../src/register-configuration.cc', |
| '../src/register-configuration.h', |
| '../src/reglist.h', |
| '../src/runtime-profiler.cc', |
| '../src/runtime-profiler.h', |
| '../src/runtime/runtime-array.cc', |
| '../src/runtime/runtime-atomics.cc', |
| '../src/runtime/runtime-bigint.cc', |
| '../src/runtime/runtime-classes.cc', |
| '../src/runtime/runtime-collections.cc', |
| '../src/runtime/runtime-compiler.cc', |
| '../src/runtime/runtime-date.cc', |
| '../src/runtime/runtime-debug.cc', |
| '../src/runtime/runtime-forin.cc', |
| '../src/runtime/runtime-function.cc', |
| '../src/runtime/runtime-error.cc', |
| '../src/runtime/runtime-futex.cc', |
| '../src/runtime/runtime-generator.cc', |
| '../src/runtime/runtime-intl.cc', |
| '../src/runtime/runtime-internal.cc', |
| '../src/runtime/runtime-interpreter.cc', |
| '../src/runtime/runtime-literals.cc', |
| '../src/runtime/runtime-liveedit.cc', |
| '../src/runtime/runtime-maths.cc', |
| '../src/runtime/runtime-module.cc', |
| '../src/runtime/runtime-numbers.cc', |
| '../src/runtime/runtime-object.cc', |
| '../src/runtime/runtime-operators.cc', |
| '../src/runtime/runtime-promise.cc', |
| '../src/runtime/runtime-proxy.cc', |
| '../src/runtime/runtime-regexp.cc', |
| '../src/runtime/runtime-scopes.cc', |
| '../src/runtime/runtime-strings.cc', |
| '../src/runtime/runtime-symbol.cc', |
| '../src/runtime/runtime-test.cc', |
| '../src/runtime/runtime-typedarray.cc', |
| '../src/runtime/runtime-utils.h', |
| '../src/runtime/runtime-wasm.cc', |
| '../src/runtime/runtime.cc', |
| '../src/runtime/runtime.h', |
| '../src/safepoint-table.cc', |
| '../src/safepoint-table.h', |
| '../src/setup-isolate.h', |
| '../src/signature.h', |
| '../src/simulator-base.cc', |
| '../src/simulator-base.h', |
| '../src/simulator.h', |
| '../src/snapshot/builtin-deserializer-allocator.cc', |
| '../src/snapshot/builtin-deserializer-allocator.h', |
| '../src/snapshot/builtin-deserializer.cc', |
| '../src/snapshot/builtin-deserializer.h', |
| '../src/snapshot/builtin-serializer-allocator.cc', |
| '../src/snapshot/builtin-serializer-allocator.h', |
| '../src/snapshot/builtin-serializer.cc', |
| '../src/snapshot/builtin-serializer.h', |
| '../src/snapshot/builtin-snapshot-utils.cc', |
| '../src/snapshot/builtin-snapshot-utils.h', |
| '../src/snapshot/code-serializer.cc', |
| '../src/snapshot/code-serializer.h', |
| '../src/snapshot/default-deserializer-allocator.cc', |
| '../src/snapshot/default-deserializer-allocator.h', |
| '../src/snapshot/default-serializer-allocator.cc', |
| '../src/snapshot/default-serializer-allocator.h', |
| '../src/snapshot/deserializer.cc', |
| '../src/snapshot/deserializer.h', |
| '../src/snapshot/natives-common.cc', |
| '../src/snapshot/natives.h', |
| '../src/snapshot/object-deserializer.cc', |
| '../src/snapshot/object-deserializer.h', |
| '../src/snapshot/partial-deserializer.cc', |
| '../src/snapshot/partial-deserializer.h', |
| '../src/snapshot/partial-serializer.cc', |
| '../src/snapshot/partial-serializer.h', |
| '../src/snapshot/serializer.cc', |
| '../src/snapshot/serializer-common.cc', |
| '../src/snapshot/serializer-common.h', |
| '../src/snapshot/serializer.h', |
| '../src/snapshot/snapshot-common.cc', |
| '../src/snapshot/snapshot.h', |
| '../src/snapshot/snapshot-source-sink.cc', |
| '../src/snapshot/snapshot-source-sink.h', |
| '../src/snapshot/startup-deserializer.cc', |
| '../src/snapshot/startup-deserializer.h', |
| '../src/snapshot/startup-serializer.cc', |
| '../src/snapshot/startup-serializer.h', |
| '../src/source-position-table.cc', |
| '../src/source-position-table.h', |
| '../src/source-position.cc', |
| '../src/source-position.h', |
| '../src/splay-tree.h', |
| '../src/splay-tree-inl.h', |
| '../src/startup-data-util.cc', |
| '../src/startup-data-util.h', |
| '../src/string-builder.cc', |
| '../src/string-builder.h', |
| '../src/string-case.cc', |
| '../src/string-case.h', |
| '../src/string-hasher-inl.h', |
| '../src/string-hasher.h', |
| '../src/string-search.h', |
| '../src/string-stream.cc', |
| '../src/string-stream.h', |
| '../src/strtod.cc', |
| '../src/strtod.h', |
| '../src/ic/stub-cache.cc', |
| '../src/ic/stub-cache.h', |
| '../src/third_party/utf8-decoder/utf8-decoder.h', |
| '../src/tracing/trace-event.cc', |
| '../src/tracing/trace-event.h', |
| '../src/tracing/traced-value.cc', |
| '../src/tracing/traced-value.h', |
| '../src/tracing/tracing-category-observer.cc', |
| '../src/tracing/tracing-category-observer.h', |
| '../src/transitions-inl.h', |
| '../src/transitions.cc', |
| '../src/transitions.h', |
| '../src/trap-handler/handler-outside.cc', |
| '../src/trap-handler/handler-shared.cc', |
| '../src/trap-handler/trap-handler.h', |
| '../src/trap-handler/trap-handler-internal.h', |
| '../src/type-hints.cc', |
| '../src/type-hints.h', |
| '../src/unicode-inl.h', |
| '../src/unicode.cc', |
| '../src/unicode.h', |
| '../src/unicode-cache-inl.h', |
| '../src/unicode-cache.h', |
| '../src/unicode-decoder.cc', |
| '../src/unicode-decoder.h', |
| '../src/uri.cc', |
| '../src/uri.h', |
| '../src/utils-inl.h', |
| '../src/utils.cc', |
| '../src/utils.h', |
| '../src/v8.cc', |
| '../src/v8.h', |
| '../src/v8memory.h', |
| '../src/v8threads.cc', |
| '../src/v8threads.h', |
| '../src/value-serializer.cc', |
| '../src/value-serializer.h', |
| '../src/vector-slot-pair.cc', |
| '../src/vector-slot-pair.h', |
| '../src/vector.h', |
| '../src/version.cc', |
| '../src/version.h', |
| '../src/visitors.cc', |
| '../src/visitors.h', |
| '../src/vm-state-inl.h', |
| '../src/vm-state.h', |
| '../src/wasm/baseline/liftoff-assembler-defs.h', |
| '../src/wasm/baseline/liftoff-assembler.cc', |
| '../src/wasm/baseline/liftoff-assembler.h', |
| '../src/wasm/baseline/liftoff-compiler.cc', |
| '../src/wasm/baseline/liftoff-register.h', |
| '../src/wasm/compilation-manager.cc', |
| '../src/wasm/compilation-manager.h', |
| '../src/wasm/decoder.h', |
| '../src/wasm/function-body-decoder.cc', |
| '../src/wasm/function-body-decoder.h', |
| '../src/wasm/function-body-decoder-impl.h', |
| '../src/wasm/leb-helper.h', |
| '../src/wasm/local-decl-encoder.cc', |
| '../src/wasm/local-decl-encoder.h', |
| '../src/wasm/memory-tracing.cc', |
| '../src/wasm/memory-tracing.h', |
| '../src/wasm/module-compiler.cc', |
| '../src/wasm/module-compiler.h', |
| '../src/wasm/module-decoder.cc', |
| '../src/wasm/module-decoder.h', |
| '../src/wasm/signature-map.cc', |
| '../src/wasm/signature-map.h', |
| '../src/wasm/streaming-decoder.cc', |
| '../src/wasm/streaming-decoder.h', |
| '../src/wasm/wasm-code-manager.cc', |
| '../src/wasm/wasm-code-manager.h', |
| '../src/wasm/wasm-code-specialization.cc', |
| '../src/wasm/wasm-code-specialization.h', |
| '../src/wasm/wasm-code-wrapper.cc', |
| '../src/wasm/wasm-code-wrapper.h', |
| '../src/wasm/wasm-constants.h', |
| '../src/wasm/wasm-debug.cc', |
| '../src/wasm/wasm-engine.cc', |
| '../src/wasm/wasm-engine.h', |
| '../src/wasm/wasm-external-refs.cc', |
| '../src/wasm/wasm-external-refs.h', |
| '../src/wasm/wasm-js.cc', |
| '../src/wasm/wasm-js.h', |
| '../src/wasm/wasm-limits.h', |
| '../src/wasm/wasm-memory.cc', |
| '../src/wasm/wasm-memory.h', |
| '../src/wasm/wasm-module.cc', |
| '../src/wasm/wasm-module.h', |
| '../src/wasm/wasm-module-builder.cc', |
| '../src/wasm/wasm-module-builder.h', |
| '../src/wasm/wasm-interpreter.cc', |
| '../src/wasm/wasm-interpreter.h', |
| '../src/wasm/wasm-objects-inl.h', |
| '../src/wasm/wasm-objects.cc', |
| '../src/wasm/wasm-objects.h', |
| '../src/wasm/wasm-opcodes.cc', |
| '../src/wasm/wasm-opcodes.h', |
| '../src/wasm/wasm-result.cc', |
| '../src/wasm/wasm-result.h', |
| '../src/wasm/wasm-serialization.cc', |
| '../src/wasm/wasm-serialization.h', |
| '../src/wasm/wasm-text.cc', |
| '../src/wasm/wasm-text.h', |
| '../src/wasm/wasm-value.h', |
| '../src/zone/accounting-allocator.cc', |
| '../src/zone/accounting-allocator.h', |
| '../src/zone/zone-segment.cc', |
| '../src/zone/zone-segment.h', |
| '../src/zone/zone.cc', |
| '../src/zone/zone.h', |
| '../src/zone/zone-chunk-list.h', |
| '../src/zone/zone-segment.cc', |
| '../src/zone/zone-segment.h', |
| '../src/zone/zone-allocator.h', |
| '../src/zone/zone-containers.h', |
| '../src/zone/zone-handle-set.h', |
| '../src/zone/zone-list-inl.h', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ['v8_target_arch=="arm"', { |
| 'sources': [ |
| '../src/arm/assembler-arm-inl.h', |
| '../src/arm/assembler-arm.cc', |
| '../src/arm/assembler-arm.h', |
| '../src/arm/code-stubs-arm.cc', |
| '../src/arm/code-stubs-arm.h', |
| '../src/arm/codegen-arm.cc', |
| '../src/arm/constants-arm.h', |
| '../src/arm/constants-arm.cc', |
| '../src/arm/cpu-arm.cc', |
| '../src/arm/deoptimizer-arm.cc', |
| '../src/arm/disasm-arm.cc', |
| '../src/arm/frame-constants-arm.cc', |
| '../src/arm/frame-constants-arm.h', |
| '../src/arm/interface-descriptors-arm.cc', |
| '../src/arm/interface-descriptors-arm.h', |
| '../src/arm/macro-assembler-arm.cc', |
| '../src/arm/macro-assembler-arm.h', |
| '../src/arm/simulator-arm.cc', |
| '../src/arm/simulator-arm.h', |
| '../src/arm/eh-frame-arm.cc', |
| '../src/compiler/arm/code-generator-arm.cc', |
| '../src/compiler/arm/instruction-codes-arm.h', |
| '../src/compiler/arm/instruction-scheduler-arm.cc', |
| '../src/compiler/arm/instruction-selector-arm.cc', |
| '../src/compiler/arm/unwinding-info-writer-arm.cc', |
| '../src/compiler/arm/unwinding-info-writer-arm.h', |
| '../src/debug/arm/debug-arm.cc', |
| '../src/regexp/arm/regexp-macro-assembler-arm.cc', |
| '../src/regexp/arm/regexp-macro-assembler-arm.h', |
| '../src/wasm/baseline/arm/liftoff-assembler-arm.h', |
| ], |
| }], |
| ['v8_target_arch=="arm64"', { |
| 'sources': [ |
| '../src/arm64/assembler-arm64.cc', |
| '../src/arm64/assembler-arm64.h', |
| '../src/arm64/assembler-arm64-inl.h', |
| '../src/arm64/codegen-arm64.cc', |
| '../src/arm64/code-stubs-arm64.cc', |
| '../src/arm64/code-stubs-arm64.h', |
| '../src/arm64/constants-arm64.h', |
| '../src/arm64/cpu-arm64.cc', |
| '../src/arm64/decoder-arm64.cc', |
| '../src/arm64/decoder-arm64.h', |
| '../src/arm64/decoder-arm64-inl.h', |
| '../src/arm64/deoptimizer-arm64.cc', |
| '../src/arm64/disasm-arm64.cc', |
| '../src/arm64/disasm-arm64.h', |
| '../src/arm64/frame-constants-arm64.cc', |
| '../src/arm64/frame-constants-arm64.h', |
| '../src/arm64/instructions-arm64-constants.cc', |
| '../src/arm64/instructions-arm64.cc', |
| '../src/arm64/instructions-arm64.h', |
| '../src/arm64/instrument-arm64.cc', |
| '../src/arm64/instrument-arm64.h', |
| '../src/arm64/interface-descriptors-arm64.cc', |
| '../src/arm64/interface-descriptors-arm64.h', |
| '../src/arm64/macro-assembler-arm64.cc', |
| '../src/arm64/macro-assembler-arm64.h', |
| '../src/arm64/macro-assembler-arm64-inl.h', |
| '../src/arm64/simulator-arm64.cc', |
| '../src/arm64/simulator-arm64.h', |
| '../src/arm64/simulator-logic-arm64.cc', |
| '../src/arm64/utils-arm64.cc', |
| '../src/arm64/utils-arm64.h', |
| '../src/arm64/eh-frame-arm64.cc', |
| '../src/compiler/arm64/code-generator-arm64.cc', |
| '../src/compiler/arm64/instruction-codes-arm64.h', |
| '../src/compiler/arm64/instruction-scheduler-arm64.cc', |
| '../src/compiler/arm64/instruction-selector-arm64.cc', |
| '../src/compiler/arm64/unwinding-info-writer-arm64.cc', |
| '../src/compiler/arm64/unwinding-info-writer-arm64.h', |
| '../src/debug/arm64/debug-arm64.cc', |
| '../src/regexp/arm64/regexp-macro-assembler-arm64.cc', |
| '../src/regexp/arm64/regexp-macro-assembler-arm64.h', |
| '../src/wasm/baseline/arm64/liftoff-assembler-arm64.h', |
| ], |
| }], |
| ['v8_target_arch=="ia32"', { |
| 'sources': [ |
| '../src/ia32/assembler-ia32-inl.h', |
| '../src/ia32/assembler-ia32.cc', |
| '../src/ia32/assembler-ia32.h', |
| '../src/ia32/code-stubs-ia32.cc', |
| '../src/ia32/codegen-ia32.cc', |
| '../src/ia32/cpu-ia32.cc', |
| '../src/ia32/deoptimizer-ia32.cc', |
| '../src/ia32/disasm-ia32.cc', |
| '../src/ia32/frame-constants-ia32.cc', |
| '../src/ia32/frame-constants-ia32.h', |
| '../src/ia32/interface-descriptors-ia32.cc', |
| '../src/ia32/macro-assembler-ia32.cc', |
| '../src/ia32/macro-assembler-ia32.h', |
| '../src/ia32/simulator-ia32.cc', |
| '../src/ia32/simulator-ia32.h', |
| '../src/ia32/sse-instr.h', |
| '../src/compiler/ia32/code-generator-ia32.cc', |
| '../src/compiler/ia32/instruction-codes-ia32.h', |
| '../src/compiler/ia32/instruction-scheduler-ia32.cc', |
| '../src/compiler/ia32/instruction-selector-ia32.cc', |
| '../src/debug/ia32/debug-ia32.cc', |
| '../src/regexp/ia32/regexp-macro-assembler-ia32.cc', |
| '../src/regexp/ia32/regexp-macro-assembler-ia32.h', |
| '../src/wasm/baseline/ia32/liftoff-assembler-ia32.h', |
| ], |
| }], |
| ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', { |
| 'sources': [ |
| '../src/mips/assembler-mips.cc', |
| '../src/mips/assembler-mips.h', |
| '../src/mips/assembler-mips-inl.h', |
| '../src/mips/codegen-mips.cc', |
| '../src/mips/code-stubs-mips.cc', |
| '../src/mips/code-stubs-mips.h', |
| '../src/mips/constants-mips.cc', |
| '../src/mips/constants-mips.h', |
| '../src/mips/cpu-mips.cc', |
| '../src/mips/deoptimizer-mips.cc', |
| '../src/mips/disasm-mips.cc', |
| '../src/mips/frame-constants-mips.cc', |
| '../src/mips/frame-constants-mips.h', |
| '../src/mips/interface-descriptors-mips.cc', |
| '../src/mips/macro-assembler-mips.cc', |
| '../src/mips/macro-assembler-mips.h', |
| '../src/mips/simulator-mips.cc', |
| '../src/mips/simulator-mips.h', |
| '../src/compiler/mips/code-generator-mips.cc', |
| '../src/compiler/mips/instruction-codes-mips.h', |
| '../src/compiler/mips/instruction-scheduler-mips.cc', |
| '../src/compiler/mips/instruction-selector-mips.cc', |
| '../src/debug/mips/debug-mips.cc', |
| '../src/regexp/mips/regexp-macro-assembler-mips.cc', |
| '../src/regexp/mips/regexp-macro-assembler-mips.h', |
| '../src/wasm/baseline/mips/liftoff-assembler-mips.h', |
| ], |
| }], |
| ['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', { |
| 'sources': [ |
| '../src/mips64/assembler-mips64.cc', |
| '../src/mips64/assembler-mips64.h', |
| '../src/mips64/assembler-mips64-inl.h', |
| '../src/mips64/codegen-mips64.cc', |
| '../src/mips64/code-stubs-mips64.cc', |
| '../src/mips64/code-stubs-mips64.h', |
| '../src/mips64/constants-mips64.cc', |
| '../src/mips64/constants-mips64.h', |
| '../src/mips64/cpu-mips64.cc', |
| '../src/mips64/deoptimizer-mips64.cc', |
| '../src/mips64/disasm-mips64.cc', |
| '../src/mips64/frame-constants-mips64.cc', |
| '../src/mips64/frame-constants-mips64.h', |
| '../src/mips64/interface-descriptors-mips64.cc', |
| '../src/mips64/macro-assembler-mips64.cc', |
| '../src/mips64/macro-assembler-mips64.h', |
| '../src/mips64/simulator-mips64.cc', |
| '../src/mips64/simulator-mips64.h', |
| '../src/compiler/mips64/code-generator-mips64.cc', |
| '../src/compiler/mips64/instruction-codes-mips64.h', |
| '../src/compiler/mips64/instruction-scheduler-mips64.cc', |
| '../src/compiler/mips64/instruction-selector-mips64.cc', |
| '../src/debug/mips64/debug-mips64.cc', |
| '../src/regexp/mips64/regexp-macro-assembler-mips64.cc', |
| '../src/regexp/mips64/regexp-macro-assembler-mips64.h', |
| '../src/wasm/baseline/mips64/liftoff-assembler-mips64.h', |
| ], |
| }], |
| ['v8_target_arch=="x64"', { |
| 'sources': [ |
| '../src/compiler/x64/code-generator-x64.cc', |
| '../src/compiler/x64/instruction-codes-x64.h', |
| '../src/compiler/x64/instruction-scheduler-x64.cc', |
| '../src/compiler/x64/instruction-selector-x64.cc', |
| '../src/compiler/x64/unwinding-info-writer-x64.cc', |
| '../src/compiler/x64/unwinding-info-writer-x64.h', |
| '../src/x64/assembler-x64-inl.h', |
| '../src/x64/assembler-x64.cc', |
| '../src/x64/assembler-x64.h', |
| '../src/x64/code-stubs-x64.cc', |
| '../src/x64/codegen-x64.cc', |
| '../src/x64/cpu-x64.cc', |
| '../src/x64/deoptimizer-x64.cc', |
| '../src/x64/disasm-x64.cc', |
| '../src/x64/eh-frame-x64.cc', |
| '../src/x64/frame-constants-x64.cc', |
| '../src/x64/frame-constants-x64.h', |
| '../src/x64/interface-descriptors-x64.cc', |
| '../src/x64/macro-assembler-x64.cc', |
| '../src/x64/macro-assembler-x64.h', |
| '../src/x64/simulator-x64.cc', |
| '../src/x64/simulator-x64.h', |
| '../src/x64/sse-instr.h', |
| '../src/debug/x64/debug-x64.cc', |
| '../src/regexp/x64/regexp-macro-assembler-x64.cc', |
| '../src/regexp/x64/regexp-macro-assembler-x64.h', |
| '../src/third_party/valgrind/valgrind.h', |
| '../src/wasm/baseline/x64/liftoff-assembler-x64.h', |
| ], |
| }], |
| ['v8_target_arch=="x64" and OS=="linux"', { |
| 'sources': ['../src/trap-handler/handler-inside.cc'] |
| }], |
| ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
| 'sources': [ |
| '../src/compiler/ppc/code-generator-ppc.cc', |
| '../src/compiler/ppc/instruction-codes-ppc.h', |
| '../src/compiler/ppc/instruction-scheduler-ppc.cc', |
| '../src/compiler/ppc/instruction-selector-ppc.cc', |
| '../src/debug/ppc/debug-ppc.cc', |
| '../src/ppc/assembler-ppc-inl.h', |
| '../src/ppc/assembler-ppc.cc', |
| '../src/ppc/assembler-ppc.h', |
| '../src/ppc/code-stubs-ppc.cc', |
| '../src/ppc/code-stubs-ppc.h', |
| '../src/ppc/codegen-ppc.cc', |
| '../src/ppc/constants-ppc.h', |
| '../src/ppc/constants-ppc.cc', |
| '../src/ppc/cpu-ppc.cc', |
| '../src/ppc/deoptimizer-ppc.cc', |
| '../src/ppc/disasm-ppc.cc', |
| '../src/ppc/frame-constants-ppc.cc', |
| '../src/ppc/frame-constants-ppc.h', |
| '../src/ppc/interface-descriptors-ppc.cc', |
| '../src/ppc/macro-assembler-ppc.cc', |
| '../src/ppc/macro-assembler-ppc.h', |
| '../src/ppc/simulator-ppc.cc', |
| '../src/ppc/simulator-ppc.h', |
| '../src/regexp/ppc/regexp-macro-assembler-ppc.cc', |
| '../src/regexp/ppc/regexp-macro-assembler-ppc.h', |
| '../src/wasm/baseline/ppc/liftoff-assembler-ppc.h', |
| ], |
| }], |
| ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { |
| 'sources': [ |
| '../src/compiler/s390/code-generator-s390.cc', |
| '../src/compiler/s390/instruction-codes-s390.h', |
| '../src/compiler/s390/instruction-scheduler-s390.cc', |
| '../src/compiler/s390/instruction-selector-s390.cc', |
| '../src/debug/s390/debug-s390.cc', |
| '../src/regexp/s390/regexp-macro-assembler-s390.cc', |
| '../src/regexp/s390/regexp-macro-assembler-s390.h', |
| '../src/s390/assembler-s390.cc', |
| '../src/s390/assembler-s390.h', |
| '../src/s390/assembler-s390-inl.h', |
| '../src/s390/codegen-s390.cc', |
| '../src/s390/code-stubs-s390.cc', |
| '../src/s390/code-stubs-s390.h', |
| '../src/s390/constants-s390.cc', |
| '../src/s390/constants-s390.h', |
| '../src/s390/cpu-s390.cc', |
| '../src/s390/deoptimizer-s390.cc', |
| '../src/s390/disasm-s390.cc', |
| '../src/s390/frame-constants-s390.cc', |
| '../src/s390/frame-constants-s390.h', |
| '../src/s390/interface-descriptors-s390.cc', |
| '../src/s390/macro-assembler-s390.cc', |
| '../src/s390/macro-assembler-s390.h', |
| '../src/s390/simulator-s390.cc', |
| '../src/s390/simulator-s390.h', |
| '../src/wasm/baseline/s390/liftoff-assembler-s390.h', |
| ], |
| }], |
| ['OS=="win"', { |
| 'variables': { |
| 'gyp_generators': '<!(echo $GYP_GENERATORS)', |
| }, |
| 'msvs_disabled_warnings': [4351, 4355, 4800], |
| # When building Official, the .lib is too large and exceeds the 2G |
| # limit. This breaks it into multiple pieces to avoid the limit. |
| # See http://crbug.com/485155. |
| 'msvs_shard': 4, |
| # This will prevent V8's .cc files conflicting with the inspector's |
| # .cpp files in the same shard. |
| 'msvs_settings': { |
| 'VCCLCompilerTool': { |
| 'ObjectFile':'$(IntDir)%(Extension)\\', |
| }, |
| }, |
| }], |
| ['component=="shared_library"', { |
| 'defines': [ |
| 'BUILDING_V8_SHARED', |
| ], |
| }], |
| ['v8_postmortem_support=="true"', { |
| 'sources': [ |
| '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| ] |
| }], |
| ['v8_enable_i18n_support==1', { |
| 'dependencies': [ |
| '<(icu_gyp_path):icui18n', |
| '<(icu_gyp_path):icuuc', |
| ], |
| 'conditions': [ |
| ['icu_use_data_file_flag==1', { |
| 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], |
| }, { # else icu_use_data_file_flag !=1 |
| 'conditions': [ |
| ['OS=="win"', { |
| 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], |
| }, { |
| 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], |
| }], |
| ], |
| }], |
| ], |
| }, { # v8_enable_i18n_support==0 |
| 'sources!': [ |
| '../src/builtins/builtins-intl.cc', |
| '../src/builtins/builtins-intl.h', |
| '../src/char-predicates.cc', |
| '../src/intl.cc', |
| '../src/intl.h', |
| '../src/objects/intl-objects.cc', |
| '../src/objects/intl-objects.h', |
| '../src/runtime/runtime-intl.cc', |
| ], |
| }], |
| ['OS=="win" and v8_enable_i18n_support==1', { |
| 'dependencies': [ |
| '<(icu_gyp_path):icudata', |
| ], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_libbase', |
| 'type': '<(component)', |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'include_dirs+': [ |
| '..', |
| ], |
| 'sources': [ |
| '../src/base/adapters.h', |
| '../src/base/atomic-utils.h', |
| '../src/base/atomicops.h', |
| '../src/base/atomicops_internals_atomicword_compat.h', |
| '../src/base/atomicops_internals_portable.h', |
| '../src/base/atomicops_internals_std.h', |
| '../src/base/base-export.h', |
| '../src/base/bits.cc', |
| '../src/base/bits.h', |
| '../src/base/build_config.h', |
| '../src/base/compiler-specific.h', |
| '../src/base/cpu.cc', |
| '../src/base/cpu.h', |
| '../src/base/division-by-constant.cc', |
| '../src/base/division-by-constant.h', |
| '../src/base/debug/stack_trace.cc', |
| '../src/base/debug/stack_trace.h', |
| '../src/base/export-template.h', |
| '../src/base/file-utils.cc', |
| '../src/base/file-utils.h', |
| '../src/base/flags.h', |
| '../src/base/format-macros.h', |
| '../src/base/free_deleter.h', |
| '../src/base/functional.cc', |
| '../src/base/functional.h', |
| '../src/base/hashmap.h', |
| '../src/base/hashmap-entry.h', |
| '../src/base/ieee754.cc', |
| '../src/base/ieee754.h', |
| '../src/base/iterator.h', |
| '../src/base/lazy-instance.h', |
| '../src/base/logging.cc', |
| '../src/base/logging.h', |
| '../src/base/macros.h', |
| '../src/base/once.cc', |
| '../src/base/once.h', |
| '../src/base/optional.h', |
| '../src/base/page-allocator.cc', |
| '../src/base/page-allocator.h', |
| '../src/base/platform/elapsed-timer.h', |
| '../src/base/platform/time.cc', |
| '../src/base/platform/time.h', |
| '../src/base/platform/condition-variable.cc', |
| '../src/base/platform/condition-variable.h', |
| '../src/base/platform/mutex.cc', |
| '../src/base/platform/mutex.h', |
| '../src/base/platform/platform.h', |
| '../src/base/platform/semaphore.cc', |
| '../src/base/platform/semaphore.h', |
| '../src/base/ring-buffer.h', |
| '../src/base/safe_conversions.h', |
| '../src/base/safe_conversions_impl.h', |
| '../src/base/safe_math.h', |
| '../src/base/safe_math_impl.h', |
| '../src/base/sys-info.cc', |
| '../src/base/sys-info.h', |
| '../src/base/template-utils.h', |
| '../src/base/timezone-cache.h', |
| '../src/base/tsan.h', |
| '../src/base/utils/random-number-generator.cc', |
| '../src/base/utils/random-number-generator.h', |
| ], |
| 'target_conditions': [ |
| ['OS=="android" and _toolset=="target"', { |
| 'libraries': [ |
| '-llog', |
| ], |
| 'include_dirs': [ |
| 'src/common/android/include', |
| ], |
| }], |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ['component=="shared_library"', { |
| 'defines': [ |
| 'BUILDING_V8_BASE_SHARED', |
| ], |
| 'direct_dependent_settings': { |
| 'defines': [ |
| 'USING_V8_BASE_SHARED', |
| ], |
| }, |
| }], |
| ['OS=="linux"', { |
| 'link_settings': { |
| 'libraries': [ |
| '-ldl', |
| '-lrt' |
| ], |
| }, |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-linux.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ], |
| } |
| ], |
| ['OS=="android"', { |
| 'sources': [ |
| '../src/base/debug/stack_trace_android.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ], |
| 'link_settings': { |
| 'target_conditions': [ |
| ['_toolset=="host" and host_os!="mac"', { |
| # Only include libdl and librt on host builds because they |
| # are included by default on Android target builds, and we |
| # don't want to re-include them here since this will change |
| # library order and break (see crbug.com/469973). |
| # These libraries do not exist on Mac hosted builds. |
| 'libraries': [ |
| '-ldl', |
| '-lrt' |
| ] |
| }] |
| ] |
| }, |
| 'conditions': [ |
| ['host_os=="mac"', { |
| 'target_conditions': [ |
| ['_toolset=="host"', { |
| 'sources': [ |
| '../src/base/platform/platform-macos.cc' |
| ] |
| }, { |
| 'sources': [ |
| '../src/base/platform/platform-linux.cc' |
| ] |
| }], |
| ], |
| }, { |
| 'sources': [ |
| '../src/base/platform/platform-linux.cc' |
| ] |
| }], |
| ], |
| }, |
| ], |
| ['OS=="qnx"', { |
| 'link_settings': { |
| 'target_conditions': [ |
| ['_toolset=="host" and host_os=="linux"', { |
| 'libraries': [ |
| '-lrt' |
| ], |
| }], |
| ['_toolset=="target"', { |
| 'libraries': [ |
| '-lbacktrace' |
| ], |
| }], |
| ], |
| }, |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| '../src/base/qnx-math.h' |
| ], |
| 'target_conditions': [ |
| ['_toolset=="host" and host_os=="linux"', { |
| 'sources': [ |
| '../src/base/platform/platform-linux.cc' |
| ], |
| }], |
| ['_toolset=="host" and host_os=="mac"', { |
| 'sources': [ |
| '../src/base/platform/platform-macos.cc' |
| ], |
| }], |
| ['_toolset=="target"', { |
| 'sources': [ |
| '../src/base/platform/platform-qnx.cc' |
| ], |
| }], |
| ], |
| }, |
| ], |
| ['OS=="freebsd"', { |
| 'link_settings': { |
| 'libraries': [ |
| '-L/usr/local/lib -lexecinfo', |
| ]}, |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-freebsd.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ], |
| } |
| ], |
| ['OS=="openbsd"', { |
| 'link_settings': { |
| 'libraries': [ |
| '-L/usr/local/lib -lexecinfo', |
| ]}, |
| 'sources': [ |
| '../src/base/platform/platform-openbsd.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc' |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ], |
| } |
| ], |
| ['OS=="netbsd"', { |
| 'link_settings': { |
| 'libraries': [ |
| '-L/usr/pkg/lib -Wl,-R/usr/pkg/lib -lexecinfo', |
| ]}, |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-openbsd.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ], |
| } |
| ], |
| ['OS=="aix"', { |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-aix.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc' |
| ]}, |
| ], |
| ['OS=="fuchsia"', { |
| 'sources': [ |
| '../src/base/debug/stack_trace_fuchsia.cc', |
| '../src/base/platform/platform-fuchsia.cc', |
| ]}, |
| ], |
| ['OS=="solaris"', { |
| 'link_settings': { |
| 'libraries': [ |
| '-lnsl -lrt', |
| ]}, |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-solaris.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| ], |
| } |
| ], |
| ['OS=="mac"', { |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-macos.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| '../src/base/platform/platform-posix-time.h', |
| '../src/base/platform/platform-posix-time.cc', |
| ]}, |
| ], |
| ['OS=="win"', { |
| 'defines': [ |
| '_CRT_RAND_S' # for rand_s() |
| ], |
| 'variables': { |
| 'gyp_generators': '<!(echo $GYP_GENERATORS)', |
| }, |
| 'conditions': [ |
| ['gyp_generators=="make"', { |
| 'variables': { |
| 'build_env': '<!(uname -o)', |
| }, |
| 'conditions': [ |
| ['build_env=="Cygwin"', { |
| 'sources': [ |
| '../src/base/debug/stack_trace_posix.cc', |
| '../src/base/platform/platform-cygwin.cc', |
| '../src/base/platform/platform-posix.h', |
| '../src/base/platform/platform-posix.cc', |
| ], |
| }, { |
| 'sources': [ |
| '../src/base/debug/stack_trace_win.cc', |
| '../src/base/platform/platform-win32.cc', |
| '../src/base/win32-headers.h', |
| ], |
| }], |
| ], |
| 'link_settings': { |
| 'libraries': [ '-lwinmm', '-lws2_32' ], |
| }, |
| }, { |
| 'sources': [ |
| '../src/base/debug/stack_trace_win.cc', |
| '../src/base/platform/platform-win32.cc', |
| '../src/base/win32-headers.h', |
| ], |
| 'msvs_disabled_warnings': [4351, 4355, 4800], |
| 'link_settings': { |
| 'libraries': [ |
| '-ldbghelp.lib', |
| '-lshlwapi.lib', |
| '-lwinmm.lib', |
| '-lws2_32.lib' |
| ], |
| }, |
| }], |
| ], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_libplatform', |
| 'type': '<(component)', |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'dependencies': [ |
| 'v8_libbase', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| '../include/', |
| ], |
| 'sources': [ |
| '../include//libplatform/libplatform.h', |
| '../include//libplatform/libplatform-export.h', |
| '../include//libplatform/v8-tracing.h', |
| '../src/libplatform/default-background-task-runner.cc', |
| '../src/libplatform/default-background-task-runner.h', |
| '../src/libplatform/default-foreground-task-runner.cc', |
| '../src/libplatform/default-foreground-task-runner.h', |
| '../src/libplatform/default-platform.cc', |
| '../src/libplatform/default-platform.h', |
| '../src/libplatform/task-queue.cc', |
| '../src/libplatform/task-queue.h', |
| '../src/libplatform/tracing/trace-buffer.cc', |
| '../src/libplatform/tracing/trace-buffer.h', |
| '../src/libplatform/tracing/trace-config.cc', |
| '../src/libplatform/tracing/trace-object.cc', |
| '../src/libplatform/tracing/trace-writer.cc', |
| '../src/libplatform/tracing/trace-writer.h', |
| '../src/libplatform/tracing/tracing-controller.cc', |
| '../src/libplatform/worker-thread.cc', |
| '../src/libplatform/worker-thread.h', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ['component=="shared_library"', { |
| 'direct_dependent_settings': { |
| 'defines': [ 'USING_V8_PLATFORM_SHARED' ], |
| }, |
| 'defines': [ 'BUILDING_V8_PLATFORM_SHARED' ], |
| }] |
| ], |
| 'direct_dependent_settings': { |
| 'include_dirs': [ |
| '../include/', |
| ], |
| }, |
| }, |
| { |
| 'target_name': 'v8_libsampler', |
| 'type': 'static_library', |
| 'variables': { |
| 'optimize': 'max', |
| }, |
| 'dependencies': [ |
| 'v8_libbase', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '../include/', |
| ], |
| 'sources': [ |
| '../src/libsampler/sampler.cc', |
| '../src/libsampler/sampler.h' |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ], |
| 'direct_dependent_settings': { |
| 'include_dirs': [ |
| '../include/', |
| ], |
| }, |
| }, |
| { |
| 'target_name': 'natives_blob', |
| 'type': 'none', |
| 'conditions': [ |
| [ 'v8_use_external_startup_data==1', { |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'dependencies': ['js2c#host'], |
| }, { |
| 'dependencies': ['js2c'], |
| }], |
| ], |
| 'actions': [{ |
| 'action_name': 'concatenate_natives_blob', |
| 'inputs': [ |
| '../tools//concatenate-files.py', |
| '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', |
| '<(SHARED_INTERMEDIATE_DIR)/libraries-extras.bin', |
| '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental-extras.bin', |
| ], |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'target_conditions': [ |
| ['_toolset=="host"', { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/natives_blob_host.bin', |
| ], |
| 'action': [ |
| 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob_host.bin' |
| ], |
| }, { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/natives_blob.bin', |
| ], |
| 'action': [ |
| 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin' |
| ], |
| }], |
| ], |
| }, { |
| 'outputs': [ |
| '<(PRODUCT_DIR)/natives_blob.bin', |
| ], |
| 'action': [ |
| 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin' |
| ], |
| }], |
| ], |
| }], |
| }], |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host', 'target'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ] |
| }, |
| { |
| 'target_name': 'js2c', |
| 'type': 'none', |
| 'conditions': [ |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ], |
| 'variables': { |
| 'library_files': [ |
| '../src/js/macros.py', |
| '../src/messages.h', |
| '../src/js/prologue.js', |
| '../src/js/array.js', |
| '../src/js/typedarray.js', |
| '../src/js/messages.js', |
| '../src/js/spread.js', |
| '../src/debug/mirrors.js', |
| '../src/debug/debug.js', |
| '../src/debug/liveedit.js', |
| ], |
| 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', |
| 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extras.bin', |
| 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental-extras.bin', |
| 'conditions': [ |
| ['v8_enable_i18n_support==1', { |
| 'library_files': ['../src/js/intl.js'], |
| }], |
| ], |
| }, |
| 'actions': [ |
| { |
| 'action_name': 'js2c', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(library_files)', |
| ], |
| 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/libraries.cc'], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
| 'CORE', |
| '<@(library_files)', |
| ], |
| }, |
| { |
| 'action_name': 'js2c_bin', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(library_files)', |
| ], |
| 'outputs': ['<@(libraries_bin_file)'], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', |
| 'CORE', |
| '<@(library_files)', |
| '--startup_blob', '<@(libraries_bin_file)', |
| '--nojs', |
| ], |
| }, |
| { |
| 'action_name': 'js2c_extras', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(v8_extra_library_files)', |
| ], |
| 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc'], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
| 'EXTRAS', |
| '<@(v8_extra_library_files)', |
| ], |
| }, |
| { |
| 'action_name': 'js2c_extras_bin', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(v8_extra_library_files)', |
| ], |
| 'outputs': ['<@(libraries_extras_bin_file)'], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', |
| 'EXTRAS', |
| '<@(v8_extra_library_files)', |
| '--startup_blob', '<@(libraries_extras_bin_file)', |
| '--nojs', |
| ], |
| }, |
| { |
| 'action_name': 'js2c_experimental_extras', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(v8_experimental_extra_library_files)', |
| ], |
| 'outputs': [ |
| '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
| ], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
| 'EXPERIMENTAL_EXTRAS', |
| '<@(v8_experimental_extra_library_files)', |
| ], |
| }, |
| { |
| 'action_name': 'js2c_experimental_extras_bin', |
| 'inputs': [ |
| '../tools//js2c.py', |
| '<@(v8_experimental_extra_library_files)', |
| ], |
| 'outputs': ['<@(libraries_experimental_extras_bin_file)'], |
| 'action': [ |
| 'python', |
| '../tools//js2c.py', |
| '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', |
| 'EXPERIMENTAL_EXTRAS', |
| '<@(v8_experimental_extra_library_files)', |
| '--startup_blob', '<@(libraries_experimental_extras_bin_file)', |
| '--nojs', |
| ], |
| }, |
| ], |
| }, |
| { |
| 'target_name': 'postmortem-metadata', |
| 'type': 'none', |
| 'variables': { |
| 'heapobject_files': [ |
| '../src/objects.h', |
| '../src/objects-inl.h', |
| '../src/objects/code.h', |
| '../src/objects/code-inl.h', |
| '../src/objects/fixed-array.h', |
| '../src/objects/fixed-array-inl.h', |
| '../src/objects/js-array.h', |
| '../src/objects/js-array-inl.h', |
| '../src/objects/js-regexp.h', |
| '../src/objects/js-regexp-inl.h', |
| '../src/objects/map.h', |
| '../src/objects/map-inl.h', |
| '../src/objects/script.h', |
| '../src/objects/script-inl.h', |
| '../src/objects/shared-function-info.h', |
| '../src/objects/shared-function-info-inl.h', |
| '../src/objects/string.h', |
| '../src/objects/string-inl.h', |
| ], |
| }, |
| 'actions': [ |
| { |
| 'action_name': 'gen-postmortem-metadata', |
| 'inputs': [ |
| '../tools//gen-postmortem-metadata.py', |
| '<@(heapobject_files)', |
| ], |
| 'outputs': [ |
| '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| ], |
| 'action': [ |
| 'python', |
| '../tools//gen-postmortem-metadata.py', |
| '<@(_outputs)', |
| '<@(heapobject_files)' |
| ] |
| } |
| ] |
| }, |
| { |
| 'target_name': 'mksnapshot', |
| 'type': 'executable', |
| 'dependencies': [ |
| 'v8_base', |
| 'v8_init', |
| 'v8_libbase', |
| 'v8_libplatform', |
| 'v8_nosnapshot', |
| ], |
| 'include_dirs+': [ |
| '..', |
| '<(DEPTH)', |
| ], |
| 'sources': [ |
| '../src/snapshot/mksnapshot.cc', |
| ], |
| 'conditions': [ |
| ['v8_enable_i18n_support==1', { |
| 'dependencies': [ |
| '<(icu_gyp_path):icui18n', |
| '<(icu_gyp_path):icuuc', |
| ] |
| }], |
| ['want_separate_host_toolset==1', { |
| 'toolsets': ['host'], |
| }, { |
| 'toolsets': ['target'], |
| }], |
| ], |
| }, |
| { |
| 'target_name': 'v8_dump_build_config', |
| 'type': 'none', |
| 'variables': { |
| }, |
| 'actions': [ |
| { |
| 'action_name': 'v8_dump_build_config', |
| 'inputs': [ |
| '../tools//testrunner/utils/dump_build_config_gyp.py', |
| ], |
| 'outputs': [ |
| '<(PRODUCT_DIR)/v8_build_config.json', |
| ], |
| 'action': [ |
| 'python', |
| '../tools//testrunner/utils/dump_build_config_gyp.py', |
| '<(PRODUCT_DIR)/v8_build_config.json', |
| 'dcheck_always_on=<(dcheck_always_on)', |
| 'is_asan=<(asan)', |
| 'is_cfi=<(cfi_vptr)', |
| 'is_component_build=<(component)', |
| 'is_debug=<(CONFIGURATION_NAME)', |
| # Not available in gyp. |
| 'is_gcov_coverage=0', |
| 'is_msan=<(msan)', |
| 'is_tsan=<(tsan)', |
| # Not available in gyp. |
| 'is_ubsan_vptr=0', |
| 'target_cpu=<(target_arch)', |
| 'v8_enable_i18n_support=<(v8_enable_i18n_support)', |
| 'v8_enable_verify_predictable=<(v8_enable_verify_predictable)', |
| 'v8_target_cpu=<(v8_target_arch)', |
| 'v8_use_snapshot=<(v8_use_snapshot)', |
| ], |
| 'conditions': [ |
| ['v8_target_arch=="mips" or v8_target_arch=="mipsel" \ |
| or v8_target_arch=="mips64" or v8_target_arch=="mips64el"', { |
| 'action':[ |
| 'mips_arch_variant=<(mips_arch_variant)', |
| 'mips_use_msa=<(mips_use_msa)', |
| ], |
| }], |
| ], |
| }, |
| ], |
| }, |
| { |
| 'target_name': 'v8_monolith', |
| 'type': 'none', |
| 'direct_dependent_settings': { |
| 'include_dirs': [ |
| '../include/', |
| ], |
| }, |
| 'actions': [ |
| { |
| 'action_name': 'build_with_gn', |
| 'inputs': [ |
| '../tools//node/build_gn.py', |
| ], |
| 'outputs': [ |
| '<(INTERMEDIATE_DIR)/gn/obj/libv8_monolith.a', |
| '<(INTERMEDIATE_DIR)/gn/args.gn', |
| ], |
| 'action': [ |
| '../tools//node/build_gn.py', |
| '--mode', '<(CONFIGURATION_NAME)', |
| '--v8_path', '../', |
| '--build_path', '<(INTERMEDIATE_DIR)/gn', |
| '--host_os', '<(host_os)', |
| '--flag', 'v8_promise_internal_field_count=<(v8_promise_internal_field_count)', |
| '--flag', 'target_cpu="<(target_arch)"', |
| '--flag', 'target_os="<(OS)"', |
| '--flag', 'v8_target_cpu="<(v8_target_arch)"', |
| '--flag', 'v8_embedder_string="<(v8_embedder_string)"', |
| '--flag', 'v8_use_snapshot=<(v8_use_snapshot)', |
| '--flag', 'v8_optimized_debug=<(v8_optimized_debug)', |
| '--flag', 'v8_enable_disassembler=<(v8_enable_disassembler)', |
| '--flag', 'v8_postmortem_support=<(v8_postmortem_support)', |
| ], |
| }, |
| ], |
| }, |
| ], |
| } |