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

Unified Diff: tools/coverage_helper.py

Issue 7327019: Fix the build by updating some paths in Python. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/coverage_helper.py
===================================================================
--- tools/coverage_helper.py (revision 5946)
+++ tools/coverage_helper.py (working copy)
@@ -34,8 +34,8 @@
# Set of results to ignore by path.
#
def Filter(self):
- filters = ['../ppapi/c', '../ppapi/cpp', 'src/trusted/sel_universal',
- 'src/third_party/valgrind', 'src/tools']
+ filters = ['src/third_party/ppapi/c', 'src/third_party/ppapi/cpp',
noelallen1 2011/07/08 16:18:20 We'll need to remember to undo this... Could you a
+ 'src/trusted/sel_universal', 'src/third_party/valgrind', 'src/tools']
return set([os.path.realpath(path) for path in filters])
#
@@ -95,6 +95,6 @@
groups.extend(self.GetDirList('src/trusted'))
groups.extend(self.GetDirList('src/shared'))
groups.extend(self.GetDirList('src/third_party'))
- groups.extend(self.GetDirList('../ppapi'))
+ groups.extend(self.GetDirList('src/third_party/ppapi'))
groups.extend(self.GetDirList('..'))
return groups
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698