-
Notifications
You must be signed in to change notification settings - Fork 30.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Original commit message: [build] Remove jumbo build configs Bug: chromium:994387 Change-Id: I7b37a416ce6cc79903fe04923e86af1d0065ac37 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1890090 Reviewed-by: Maya Lekova <[email protected]> Reviewed-by: Yang Guo <[email protected]> Commit-Queue: Michael Achenbach <[email protected]> Cr-Commit-Position: refs/heads/master@{#64669} Refs: v8/v8@e6f62a4 PR-URL: #39245 Refs: nodejs/build#2696 Reviewed-By: Richard Lau <[email protected]>
- Loading branch information
1 parent
2b54156
commit 492b0d6
Showing
6 changed files
with
5 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ import("//build/config/android/config.gni") | |
import("//build/config/arm.gni") | ||
import("//build/config/dcheck_always_on.gni") | ||
import("//build/config/host_byteorder.gni") | ||
import("//build/config/jumbo.gni") | ||
import("//build/config/mips.gni") | ||
import("//build/config/sanitizers/sanitizers.gni") | ||
import("//build_overrides/build.gni") | ||
|
@@ -1470,17 +1469,12 @@ if (v8_use_snapshot && v8_use_external_startup_data) { | |
if (v8_use_multi_snapshots) { | ||
deps += [ ":asm_to_inline_asm_trusted" ] | ||
sources += [ "$target_gen_dir/embedded_trusted.cc" ] | ||
jumbo_excluded_sources = [ "$target_gen_dir/embedded_trusted.cc" ] | ||
} | ||
} else if (v8_enable_embedded_builtins) { | ||
sources += [ "$target_gen_dir/embedded.S" ] | ||
|
||
if (v8_use_multi_snapshots) { | ||
sources += [ "$target_gen_dir/embedded_trusted.S" ] | ||
jumbo_excluded_sources = [ | ||
# Duplicated symbols with embedded.S | ||
"$target_gen_dir/embedded_trusted.S", | ||
] | ||
} | ||
} else { | ||
sources += [ "src/snapshot/embedded/embedded-empty.cc" ] | ||
|
@@ -1577,17 +1571,6 @@ v8_source_set("v8_initializers") { | |
"src/interpreter/interpreter-intrinsics-generator.h", | ||
] | ||
|
||
jumbo_excluded_sources = [ | ||
# TODO([email protected]): don't exclude these http://crbug.com/752428 | ||
"src/builtins/builtins-async-iterator-gen.cc", | ||
"src/builtins/builtins-async-generator-gen.cc", | ||
|
||
# These source files take an unusually large amount of time to | ||
# compile. Build them separately to avoid bottlenecks. | ||
"src/builtins/builtins-regexp-gen.cc", | ||
"src/codegen/code-stub-assembler.cc", | ||
] | ||
|
||
if (v8_current_cpu == "x86") { | ||
sources += [ | ||
### gcmole(arch:ia32) ### | ||
|
@@ -2996,19 +2979,6 @@ v8_source_set("v8_base_without_compiler") { | |
sources += check_header_includes_sources | ||
} | ||
|
||
jumbo_excluded_sources = [ | ||
# TODO([email protected]): don't exclude these http://crbug.com/752428 | ||
"src/profiler/heap-snapshot-generator.cc", # Macro clash in mman-linux.h | ||
|
||
# These source files take an unusually large amount of time to | ||
# compile. Build them separately to avoid bottlenecks. | ||
"src/api/api.cc", | ||
"src/heap/heap.cc", | ||
"src/objects/elements.cc", | ||
"src/objects/objects.cc", | ||
"src/parsing/parser.cc", | ||
] | ||
|
||
if (v8_current_cpu == "x86") { | ||
sources += [ ### gcmole(arch:ia32) ### | ||
"src/codegen/ia32/assembler-ia32-inl.h", | ||
|
@@ -3162,11 +3132,6 @@ v8_source_set("v8_base_without_compiler") { | |
"src/diagnostics/unwinding-info-win64.h", | ||
] | ||
} | ||
jumbo_excluded_sources += [ | ||
# TODO([email protected]): fix this code so it doesn't need | ||
# to be excluded, see the comments inside. | ||
"src/codegen/arm64/instructions-arm64-constants.cc", | ||
] | ||
} else if (v8_current_cpu == "mips" || v8_current_cpu == "mipsel") { | ||
sources += [ ### gcmole(arch:mipsel) ### | ||
"src/codegen/mips/assembler-mips-inl.h", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -294,16 +294,6 @@ v8_source_set("cctest_sources") { | |
"wasm/wasm-run-utils.h", | ||
] | ||
|
||
if (use_jumbo_build) { | ||
jumbo_excluded_sources = [ | ||
# TODO([email protected]): figure out the jumbo issues with these source | ||
# files, and include them in jumbo compilation units. | ||
"interpreter/bytecode-expectations-printer.cc", | ||
"interpreter/test-bytecode-generator.cc", | ||
"test-api.cc", | ||
] | ||
} | ||
|
||
if (v8_current_cpu == "arm") { | ||
sources += [ ### gcmole(arch:arm) ### | ||
"assembler-helper-arm.cc", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -233,15 +233,6 @@ v8_source_set("unittests_sources") { | |
"zone/zone-unittest.cc", | ||
] | ||
|
||
if (use_jumbo_build) { | ||
jumbo_excluded_sources = [ | ||
# TODO([email protected]): figure out how to make this build in both | ||
# modes. Template issues on windows if we add a functional_unittest | ||
# namespace as with the other files. | ||
"base/functional-unittest.cc", | ||
] | ||
} | ||
|
||
if (v8_current_cpu == "arm") { | ||
sources += [ | ||
"assembler/turbo-assembler-arm-unittest.cc", | ||
|