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

Unified Diff: webkit/support/setup_third_party.py

Issue 8933019: Fix harmless warning in setup_third_party (Closed) Base URL: http://src.chromium.org/svn/trunk/src/webkit/
Patch Set: fix patch Created 9 years 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: webkit/support/setup_third_party.py
diff --git a/webkit/support/setup_third_party.py b/webkit/support/setup_third_party.py
index f3cf719c5b8590eec9cc83a7bc2baad9201f0185..9d3dfee1e43018c9be39ae6d412dd3d9837f1853 100644
--- a/webkit/support/setup_third_party.py
+++ b/webkit/support/setup_third_party.py
@@ -14,7 +14,8 @@ def GetHeaderFilesInDir(dir_path):
"""Return a list of all header files in dir_path."""
all_files = []
for root, dirs, files in os.walk(dir_path):
- all_files.extend([os.path.join(root, f) for f in files if f.endswith('.h')])
+ all_files.extend([os.path.join(root, f).replace(os.sep, '/')
+ for f in files if f.endswith('.h')])
return all_files
« 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