Commit 2e411497 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix BUILD.gn after r22923.

R=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/449783002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22956 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 2ec32f34
......@@ -166,18 +166,6 @@ config("toolchain") {
# Actions
#
action("generate_trig_table") {
visibility = ":*" # Only targets in this file can depend on this.
script = "tools/generate-trig-table.py"
outputs = [
"$target_gen_dir/trig-table.cc"
]
args = rebase_path(outputs, root_build_dir)
}
action("js2c") {
visibility = ":*" # Only targets in this file can depend on this.
......@@ -362,14 +350,12 @@ source_set("v8_nosnapshot") {
deps = [
":js2c",
":js2c_experimental",
":generate_trig_table",
":v8_base",
]
sources = [
"$target_gen_dir/libraries.cc",
"$target_gen_dir/experimental-libraries.cc",
"$target_gen_dir/trig-table.cc",
"src/snapshot-empty.cc",
"src/snapshot-common.cc",
]
......@@ -385,7 +371,6 @@ source_set("v8_snapshot") {
deps = [
":js2c",
":js2c_experimental",
":generate_trig_table",
":run_mksnapshot",
":v8_base",
]
......@@ -393,7 +378,6 @@ source_set("v8_snapshot") {
sources = [
"$target_gen_dir/libraries.cc",
"$target_gen_dir/experimental-libraries.cc",
"$target_gen_dir/trig-table.cc",
"$target_gen_dir/snapshot.cc",
"src/snapshot-common.cc",
]
......@@ -410,14 +394,12 @@ if (v8_use_external_startup_data) {
deps = [
":js2c",
":js2c_experimental",
":generate_trig_table",
":run_mksnapshot",
":v8_base",
":natives_blob",
]
sources = [
"$target_gen_dir/trig-table.cc",
"src/natives-external.cc",
"src/snapshot-external.cc",
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment