Fix BUILD.gn after r22923.
authoryangguo@chromium.org <yangguo@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 7 Aug 2014 08:02:37 +0000 (08:02 +0000)
committeryangguo@chromium.org <yangguo@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 7 Aug 2014 08:02:37 +0000 (08:02 +0000)
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

BUILD.gn

index 3e0f751..e8798e4 100644 (file)
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -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",
     ]