| Index: PRESUBMIT.py
 | 
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
 | 
| index 3ae39863e116134563e255524b53765da9d959ac..5b3d58d3ba50d802638bd3adad6573621ebe5877 100644
 | 
| --- a/PRESUBMIT.py
 | 
| +++ b/PRESUBMIT.py
 | 
| @@ -200,8 +200,8 @@ def _CommonChecks(input_api, output_api):
 | 
|  
 | 
|  def _SkipTreeCheck(input_api, output_api):
 | 
|    """Check the env var whether we want to skip tree check.
 | 
| -     Only skip if src/version.cc has been updated."""
 | 
| -  src_version = 'src/version.cc'
 | 
| +     Only skip if include/v8-version.h has been updated."""
 | 
| +  src_version = 'include/v8-version.h'
 | 
|    FilterFile = lambda file: file.LocalPath() == src_version
 | 
|    if not input_api.AffectedSourceFiles(
 | 
|        lambda file: file.LocalPath() == src_version):
 | 
| 
 |