diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-16 08:31:37 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-16 08:31:37 +0000 |
commit | 12a6606775d8c43d9b71333056d7067de7447920 (patch) | |
tree | 984a59c72fc1ca277e74c6735b1ffc380c519b4d /remoting | |
parent | 3de3805b5f580622ba884f0a3892b70a6e232654 (diff) | |
download | chromium_src-12a6606775d8c43d9b71333056d7067de7447920.zip chromium_src-12a6606775d8c43d9b71333056d7067de7447920.tar.gz chromium_src-12a6606775d8c43d9b71333056d7067de7447920.tar.bz2 |
Chromoting: Use different jscompile stamp files for v1 and v2 webapps.
Currently, both the v1 and the v2 webapps use the same stamp file for
their jscompile actions. The result of this is that the jscompile checks
will only be run for either v1 or v2, but not both.
This change derives the jscompile.stamp file from the target name so that
each webapp has its own stamp file.
BUG=
Review URL: https://codereview.chromium.org/474383002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/remoting_webapp.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/remoting_webapp.gypi b/remoting/remoting_webapp.gypi index 19692d1..b5ea119 100644 --- a/remoting/remoting_webapp.gypi +++ b/remoting/remoting_webapp.gypi @@ -21,7 +21,7 @@ 'conditions': [ ['run_jscompile != 0', { 'variables': { - 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', + 'success_stamp': '<(PRODUCT_DIR)/<(_target_name)_jscompile.stamp', }, 'actions': [ { |