| Index: BUILD.gn
|
| diff --git a/BUILD.gn b/BUILD.gn
|
| index af6e01d5cbf2670a204a2fd2710289908c887005..ec189d40c599d041a4b782a4993aa7b9d2d4a8e5 100644
|
| --- a/BUILD.gn
|
| +++ b/BUILD.gn
|
| @@ -653,9 +653,13 @@ action("run_mksnapshot") {
|
| action("run_mkpeephole") {
|
| visibility = [ ":*" ] # Only targets in this file can depend on this.
|
|
|
| - deps = [ ":mkpeephole($v8_snapshot_toolchain)" ]
|
| + deps = [
|
| + ":mkpeephole($v8_snapshot_toolchain)",
|
| + ]
|
|
|
| - outputs = [ v8_generated_peephole_source ]
|
| + outputs = [
|
| + v8_generated_peephole_source,
|
| + ]
|
|
|
| sources = []
|
|
|
| @@ -918,6 +922,8 @@ v8_source_set("v8_base") {
|
| "src/compilation-dependencies.h",
|
| "src/compilation-statistics.cc",
|
| "src/compilation-statistics.h",
|
| + "src/compiler-dispatcher/optimizing-compile-dispatcher.cc",
|
| + "src/compiler-dispatcher/optimizing-compile-dispatcher.h",
|
| "src/compiler.cc",
|
| "src/compiler.h",
|
| "src/compiler/access-builder.cc",
|
| @@ -1410,8 +1416,6 @@ v8_source_set("v8_base") {
|
| "src/objects-printer.cc",
|
| "src/objects.cc",
|
| "src/objects.h",
|
| - "src/optimizing-compile-dispatcher.cc",
|
| - "src/optimizing-compile-dispatcher.h",
|
| "src/ostreams.cc",
|
| "src/ostreams.h",
|
| "src/parsing/expression-classifier.h",
|
|
|