Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index e7951c79f5dcfc434a19e01754d5ba3f41051640..4db8a89492af591330dd0b7f57cae2a61aa35179 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -476,42 +476,6 @@ action("js2c") { |
} |
} |
-action("js2c_experimental") { |
- visibility = [ ":*" ] # Only targets in this file can depend on this. |
- |
- script = "tools/js2c.py" |
- |
- # The script depends on this other script, this rule causes a rebuild if it |
- # changes. |
- inputs = [ |
- "tools/jsmin.py", |
- ] |
- |
- # NOSORT |
- sources = [ |
- "src/js/macros.py", |
- "src/messages.h", |
- ] |
- |
- outputs = [ |
- "$target_gen_dir/experimental-libraries.cc", |
- ] |
- |
- args = [ |
- rebase_path("$target_gen_dir/experimental-libraries.cc", |
- root_build_dir), |
- "EXPERIMENTAL", |
- ] + rebase_path(sources, root_build_dir) |
- |
- if (v8_use_external_startup_data) { |
- outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
- args += [ |
- "--startup_blob", |
- rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir), |
- ] |
- } |
-} |
- |
action("js2c_extras") { |
visibility = [ ":*" ] # Only targets in this file can depend on this. |
@@ -622,7 +586,6 @@ if (v8_use_external_startup_data) { |
deps = [ |
":js2c", |
- ":js2c_experimental", |
":js2c_experimental_extras", |
":js2c_extras", |
] |
@@ -630,7 +593,6 @@ if (v8_use_external_startup_data) { |
# NOSORT |
sources = [ |
"$target_gen_dir/libraries.bin", |
- "$target_gen_dir/libraries_experimental.bin", |
"$target_gen_dir/libraries_extras.bin", |
"$target_gen_dir/libraries_experimental_extras.bin", |
] |
@@ -793,7 +755,6 @@ v8_source_set("v8_nosnapshot") { |
deps = [ |
":js2c", |
- ":js2c_experimental", |
":js2c_experimental_extras", |
":js2c_extras", |
":v8_base", |
@@ -801,7 +762,6 @@ v8_source_set("v8_nosnapshot") { |
sources = [ |
"$target_gen_dir/experimental-extras-libraries.cc", |
- "$target_gen_dir/experimental-libraries.cc", |
"$target_gen_dir/extras-libraries.cc", |
"$target_gen_dir/libraries.cc", |
"src/snapshot/snapshot-empty.cc", |
@@ -820,7 +780,6 @@ v8_source_set("v8_snapshot") { |
deps = [ |
":js2c", |
- ":js2c_experimental", |
":js2c_experimental_extras", |
":js2c_extras", |
":v8_base", |
@@ -833,7 +792,6 @@ v8_source_set("v8_snapshot") { |
sources = [ |
"$target_gen_dir/experimental-extras-libraries.cc", |
- "$target_gen_dir/experimental-libraries.cc", |
"$target_gen_dir/extras-libraries.cc", |
"$target_gen_dir/libraries.cc", |
"$target_gen_dir/snapshot.cc", |
@@ -848,7 +806,6 @@ if (v8_use_external_startup_data) { |
deps = [ |
":js2c", |
- ":js2c_experimental", |
":js2c_experimental_extras", |
":js2c_extras", |
":v8_base", |