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

Unified Diff: compiler/generate_source_list.py

Issue 8972011: Fix paths in build process so we can build dartc (and then frog) on Windows. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' 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 | tests/co19/co19-compiler.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/generate_source_list.py
===================================================================
--- compiler/generate_source_list.py (revision 2537)
+++ compiler/generate_source_list.py (working copy)
@@ -54,7 +54,7 @@
def _print_gypi_files(self, out, name, files):
out.write(" '%s': [\n" % name)
for filename in files:
- out.write(''' r'%s',%s''' % (os.path.join(self.path, filename),'\n'))
+ out.write(''' r'%s/%s',%s''' % (self.path, filename,'\n'))
out.write(" ],\n")
def _print_ant_files(self, out, name, files):
« no previous file with comments | « no previous file | tests/co19/co19-compiler.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698