summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-03 05:59:17 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-03 05:59:17 +0000
commit9971d3931ecffc5b1e1c9e832d21b5c7741d3e8c (patch)
tree3a41888fa04a813fd0ca3462b879932747535662
parentf49f14d343557e099725af03a1dae3cda378b856 (diff)
downloadchromium_src-9971d3931ecffc5b1e1c9e832d21b5c7741d3e8c.zip
chromium_src-9971d3931ecffc5b1e1c9e832d21b5c7741d3e8c.tar.gz
chromium_src-9971d3931ecffc5b1e1c9e832d21b5c7741d3e8c.tar.bz2
Fix the GN yasm_assemble template to have a dep on yasm itself.
R=brettw@chromium.org BUG= Review URL: https://codereview.chromium.org/362423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281175 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--third_party/yasm/yasm_assemble.gni2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/yasm/yasm_assemble.gni b/third_party/yasm/yasm_assemble.gni
index 9044efa..1002aba 100644
--- a/third_party/yasm/yasm_assemble.gni
+++ b/third_party/yasm/yasm_assemble.gni
@@ -181,5 +181,7 @@ template("yasm_assemble") {
}
sources = get_target_outputs(":$action_name")
+
+ deps = [ ":$action_name" ]
}
}