summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-27 17:58:18 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-27 17:58:18 +0000
commit9814c25674a412575b8c35eb77e3406f599d2a91 (patch)
tree50d4f72b5dd186404b43555a4bcd4369fd451d48
parent9f78bc8359df1e4d2d9aed35edfa9d4d3ec3414d (diff)
downloadchromium_src-9814c25674a412575b8c35eb77e3406f599d2a91.zip
chromium_src-9814c25674a412575b8c35eb77e3406f599d2a91.tar.gz
chromium_src-9814c25674a412575b8c35eb77e3406f599d2a91.tar.bz2
Do not add <(PRODUCT_DIR)/First Run as a dependency, ever.
It is not generated by the build tool but a side-effect of browser_tests. This should be fixed eventually; no test should ever write in PRODUCT_DIR, but that's outside the scope of this effort. R=csharp@chromium.org NOTRY=true BUG= Review URL: https://chromiumcodereview.appspot.com/10984073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159065 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xtools/isolate/isolate.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/isolate/isolate.py b/tools/isolate/isolate.py
index c2ad662..f73698a 100755
--- a/tools/isolate/isolate.py
+++ b/tools/isolate/isolate.py
@@ -714,7 +714,10 @@ def generate_simplified(
match = EXECUTABLE.match(f)
if match:
return match.group(1) + '<(EXECUTABLE_SUFFIX)'
- if LOG_FILE.match(f):
+
+ # Blacklist logs and 'First Run' in the PRODUCT_DIR. First Run is not
+ # created by the compile, but by the test itself.
+ if LOG_FILE.match(f) or f == '<(PRODUCT_DIR)/First Run':
return None
if sys.platform == 'darwin':