diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-09 17:29:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-09 17:29:31 +0000 |
commit | a901cc9a31b96f16796290262cf248abb6432980 (patch) | |
tree | 95d68e3478fe80cf39d300deeee0f79d2b7ae4fb /build/util | |
parent | 8b223a402f963054a7879d5ffa05bad9295863f0 (diff) | |
download | chromium_src-a901cc9a31b96f16796290262cf248abb6432980.zip chromium_src-a901cc9a31b96f16796290262cf248abb6432980.tar.gz chromium_src-a901cc9a31b96f16796290262cf248abb6432980.tar.bz2 |
Rename source_prereqs to inputs in the GN build.
This variable changed name.
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/375873006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282076 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/util')
-rw-r--r-- | build/util/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/util/BUILD.gn b/build/util/BUILD.gn index 9109008..e8f21cf 100644 --- a/build/util/BUILD.gn +++ b/build/util/BUILD.gn @@ -16,7 +16,7 @@ action("last_change") { script = "lastchange.py" # Rerun the script any time this file changes. - source_prereqs = [ "//build/util/LASTCHANGE" ] + inputs = [ "//build/util/LASTCHANGE" ] output_header = "$target_gen_dir/last_change.h" outputs = [ output_header ] @@ -37,7 +37,7 @@ action("webkit_version") { lastchange_file = "LASTCHANGE.blink" # TODO(brettw) move from content to this directory. template_file = "//content/webkit_version.h.in" - source_prereqs = [ lastchange_file, template_file ] + inputs = [ lastchange_file, template_file ] output_file = "$root_gen_dir/webkit_version.h" outputs = [ output_file ] |