summaryrefslogtreecommitdiffstats
path: root/build/util
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-26 17:04:14 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-26 17:04:14 +0000
commit454703ec8ac274b03d6d876c5468c4ecb9e33d4a (patch)
tree54f2065da03109b8f5088dbeed263367c514a72c /build/util
parenta502575e915433c443f2b1b706be25624134501f (diff)
downloadchromium_src-454703ec8ac274b03d6d876c5468c4ecb9e33d4a.zip
chromium_src-454703ec8ac274b03d6d876c5468c4ecb9e33d4a.tar.gz
chromium_src-454703ec8ac274b03d6d876c5468c4ecb9e33d4a.tar.bz2
This renames all custom GN targets to actions in the GN build like the new version requires.
R=scottmg@chromium.org TBR=scottmg Review URL: https://codereview.chromium.org/206373007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259610 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/util')
-rw-r--r--build/util/BUILD.gn4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/util/BUILD.gn b/build/util/BUILD.gn
index 9275585..a564fd4 100644
--- a/build/util/BUILD.gn
+++ b/build/util/BUILD.gn
@@ -10,9 +10,9 @@
# The version is a string rather than an integer for extra flexibility (for
# example, we may require git hashes in the future).
#
-# All you nede to do is depend on this target, and then from your source code:
+# All you need to do is depend on this target, and then from your source code:
# #include "build/util/last_change.h"
-custom("last_change") {
+action("last_change") {
script = "//build/util/lastchange.py"
# This script must be run before targets depending on us.