Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: testing/buildbot/manage.py

Issue 1313773003: Convert blink_heap_unittests to run exclusively on Swarming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix indent Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/buildbot/chromium.webkit.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/buildbot/manage.py
diff --git a/testing/buildbot/manage.py b/testing/buildbot/manage.py
index 38d1594cb35e2ec2646f71b4f93a25d9f100ea54..66d082f397f05c896cda888487faf24a954eda76 100755
--- a/testing/buildbot/manage.py
+++ b/testing/buildbot/manage.py
@@ -21,6 +21,7 @@ import sys
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
SRC_DIR = os.path.dirname(os.path.dirname(THIS_DIR))
+BLINK_DIR = os.path.join(SRC_DIR, 'third_party', 'WebKit')
sys.path.insert(0, os.path.join(SRC_DIR, 'third_party', 'colorama', 'src'))
import colorama
@@ -80,7 +81,11 @@ class Error(Exception):
def get_isolates():
"""Returns the list of all isolate files."""
- files = subprocess.check_output(['git', 'ls-files'], cwd=SRC_DIR).splitlines()
+
+ def git_ls_files(cwd):
+ return subprocess.check_output(['git', 'ls-files'], cwd=cwd).splitlines()
+
+ files = git_ls_files(SRC_DIR) + git_ls_files(BLINK_DIR)
return [os.path.basename(f) for f in files if f.endswith('.isolate')]
« no previous file with comments | « testing/buildbot/chromium.webkit.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698