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

Unified Diff: compiler/scripts/generate_my_projects.py

Issue 9950019: Renamed the 'dartc' launch script to 'dart-analysis' and adds it to dart-sdk (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Analysis --> Analyzer Created 8 years, 9 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
Index: compiler/scripts/generate_my_projects.py
diff --git a/compiler/scripts/generate_my_projects.py b/compiler/scripts/generate_my_projects.py
index 7ee2d90acd37188f5386b88a4a35963048d1e969..82f7400d5d54033481ef7a57b3b93f1c54f305a4 100755
--- a/compiler/scripts/generate_my_projects.py
+++ b/compiler/scripts/generate_my_projects.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+# Copyright (c) 2012, 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.
@@ -30,43 +30,6 @@ def Main():
if exit_code:
return exit_code
- exit_code = os.system("python %(compiler)s/generate_source_list.py "
- "corelib %(compiler)s/corelib_sources ../corelib/src"
- % locations)
- if exit_code:
- return exit_code
-
- exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
- "domlib %(compiler)s/domlib_sources ../lib/dom dom.dart"
- % locations)
- if exit_code:
- return exit_code
-
- exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
- "htmllib %(compiler)s/htmllib_sources ../lib/html/release html.dart"
- % locations)
- if exit_code:
- return exit_code
-
- exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
- "jsonlib %(compiler)s/jsonlib_sources ../lib/json json.dart"
- % locations)
- if exit_code:
- return exit_code
-
- exit_code = os.system("python %(compiler)s/generate_systemlibrary_list.py "
- "isolatelib %(compiler)s/isolatelib_sources ../lib/isolate isolate_compiler.dart"
- % locations)
- if exit_code:
- return exit_code
-
- exit_code = os.system("python %(compiler)s/generate_source_list.py "
- "compiler_corelib "
- "%(compiler)s/compiler_corelib_sources "
- "lib" % locations)
- if exit_code:
- return exit_code
-
if '--no-gyp' in sys.argv:
print '--no-gyp is deprecated.'

Powered by Google App Engine
This is Rietveld 408576698