| Index: compiler/scripts/generate_my_projects.py
|
| diff --git a/compiler/scripts/generate_my_projects.py b/compiler/scripts/generate_my_projects.py
|
| index 82f7400d5d54033481ef7a57b3b93f1c54f305a4..7ee2d90acd37188f5386b88a4a35963048d1e969 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) 2012, the Dart project authors. Please see the AUTHORS file
|
| +# Copyright (c) 2011, 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,6 +30,43 @@ 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.'
|
|
|
|
|