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

Unified Diff: tools/compiler_scripts/generate_source_list.py

Issue 350483003: Build Tools Cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more fixes as reviewed by ricow Created 6 years, 6 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 | « tools/compile_java/compile_java.py ('k') | tools/copy_dart.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/compiler_scripts/generate_source_list.py
diff --git a/tools/compiler_scripts/generate_source_list.py b/tools/compiler_scripts/generate_source_list.py
index d0dfa5bae16c47b8904a9c2ac953ccc2145e1591..25a41014f7a9de8260c0b59a20b3ba4e77fbfcae 100644
--- a/tools/compiler_scripts/generate_source_list.py
+++ b/tools/compiler_scripts/generate_source_list.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
@@ -94,7 +94,7 @@ class Generator:
def generate(self):
self._list_files()
- file_name = self.output + '.gypi';
+ file_name = self.output + '.gypi'
gypi = self._make_output(file_name)
gypi.write("{\n 'variables': {\n")
self._print_gypi_files(gypi, self.name + '_sources', self.sources)
@@ -110,7 +110,7 @@ class Generator:
ant.write("</project>\n")
self._close(file_name, ant)
- file_name = self.output + '.txt';
+ file_name = self.output + '.txt'
txt = self._make_output(file_name)
self._print_txt_files(txt, self.sources)
self._close(file_name, txt)
« no previous file with comments | « tools/compile_java/compile_java.py ('k') | tools/copy_dart.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698