| 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)
|
|
|