OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'create_sdk_internal', | 8 'target_name': 'create_sdk_internal', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
11 'runtime/dart-runtime.gyp:dart', | 11 'runtime/dart-runtime.gyp:dart', |
12 'utils/compiler/compiler.gyp:dart2js', | 12 'utils/compiler/compiler.gyp:dart2js', |
13 'utils/pub/pub.gyp:pub', | 13 'utils/pub/pub.gyp:pub', |
14 'utils/pub/pub.gyp:core_stubs', | 14 'utils/pub/pub.gyp:core_stubs', |
15 'utils/dartfmt/dartfmt.gyp:dartfmt', | 15 'utils/dartfmt/dartfmt.gyp:dartfmt', |
| 16 'utils/analysis_server/analysis_server.gyp:analysis_server', |
16 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', | 17 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', |
17 ], | 18 ], |
18 'actions': [ | 19 'actions': [ |
19 { | 20 { |
20 'action_name': 'create_sdk_py', | 21 'action_name': 'create_sdk_py', |
21 'inputs': [ | 22 'inputs': [ |
22 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 23 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
23 '<!@(["python", "tools/list_files.py", "", ' | 24 '<!@(["python", "tools/list_files.py", "", ' |
24 '"sdk/lib/_internal/lib/preambles"])', | 25 '"sdk/lib/_internal/lib/preambles"])', |
25 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 26 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
26 'tools/create_sdk.py', | 27 'tools/create_sdk.py', |
27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 28 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
28 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 29 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 30 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
30 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 31 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
31 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', | 32 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', |
32 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', | 33 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
33 '<(SHARED_INTERMEDIATE_DIR)/core_stubs/dart_io.dart', | 34 '<(SHARED_INTERMEDIATE_DIR)/core_stubs/dart_io.dart', |
| 35 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', |
34 'tools/VERSION' | 36 'tools/VERSION' |
35 ], | 37 ], |
36 'outputs': [ | 38 'outputs': [ |
37 '<(PRODUCT_DIR)/dart-sdk/README', | 39 '<(PRODUCT_DIR)/dart-sdk/README', |
38 ], | 40 ], |
39 'action': [ | 41 'action': [ |
40 'python', | 42 'python', |
41 'tools/create_sdk.py', | 43 'tools/create_sdk.py', |
42 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 44 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
43 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' | 45 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' |
44 ], | 46 ], |
45 'message': 'Creating SDK.', | 47 'message': 'Creating SDK.', |
46 }, | 48 }, |
47 ], | 49 ], |
48 }, | 50 }, |
49 ], | 51 ], |
50 } | 52 } |
OLD | NEW |