OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # Contains all dependencies. | 8 # Contains all dependencies. |
9 'target_name': 'everything', | 9 'target_name': 'everything', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ], | 57 ], |
58 }, | 58 }, |
59 { | 59 { |
60 # Build the SDK. This target is separate from upload_sdk as the | 60 # Build the SDK. This target is separate from upload_sdk as the |
61 # editor needs to build the SDK without uploading it. | 61 # editor needs to build the SDK without uploading it. |
62 'target_name': 'create_sdk', | 62 'target_name': 'create_sdk', |
63 'type': 'none', | 63 'type': 'none', |
64 'dependencies': [ | 64 'dependencies': [ |
65 'runtime/dart-runtime.gyp:dart', | 65 'runtime/dart-runtime.gyp:dart', |
66 'utils/compiler/compiler.gyp:dart2js', | 66 'utils/compiler/compiler.gyp:dart2js', |
67 'analyzer', | |
68 'compiler', | 67 'compiler', |
69 ], | 68 ], |
70 'actions': [ | 69 'actions': [ |
71 { | 70 { |
72 'action_name': 'create_sdk_py', | 71 'action_name': 'create_sdk_py', |
73 'inputs': [ | 72 'inputs': [ |
74 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 73 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
75 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 74 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
76 'tools/create_sdk.py', | 75 'tools/create_sdk.py', |
77 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
78 '<(PRODUCT_DIR)/dart2js.snapshot', | 77 '<(PRODUCT_DIR)/dart2js.snapshot', |
79 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 78 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
80 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', | |
81 ], | 79 ], |
82 'outputs': [ | 80 'outputs': [ |
83 '<(PRODUCT_DIR)/dart-sdk/README', | 81 '<(PRODUCT_DIR)/dart-sdk/README', |
84 ], | 82 ], |
85 'action': [ | 83 'action': [ |
86 'python', | 84 'python', |
87 'tools/create_sdk.py', | 85 'tools/create_sdk.py', |
88 '<(PRODUCT_DIR)/dart-sdk', | 86 '<(PRODUCT_DIR)/dart-sdk', |
89 ], | 87 ], |
90 'message': 'Creating SDK.', | 88 'message': 'Creating SDK.', |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 }, | 226 }, |
229 { | 227 { |
230 'target_name': 'packages', | 228 'target_name': 'packages', |
231 'type': 'none', | 229 'type': 'none', |
232 'dependencies': [ | 230 'dependencies': [ |
233 'pkg/pkg.gyp:pkg_packages', | 231 'pkg/pkg.gyp:pkg_packages', |
234 ], | 232 ], |
235 }, | 233 }, |
236 ], | 234 ], |
237 } | 235 } |
OLD | NEW |