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', |
11 'dependencies': [ | 11 'dependencies': [ |
12 # Most dependencies. | 12 # Most dependencies. |
13 'default', | 13 'default', |
14 # All other targets. | 14 # All other targets. |
15 'api_docs', | 15 'api_docs', |
16 'dartc_bot', | 16 'dartc_bot', |
17 'dart2js_bot', | 17 'dart2js_bot', |
| 18 'dart2dart_bot', |
18 ], | 19 ], |
19 }, | 20 }, |
20 { | 21 { |
21 # Contains all the dependencies that will run by default. | 22 # Contains all the dependencies that will run by default. |
22 # Excludes api_docs. | 23 # Excludes api_docs. |
23 'target_name': 'default', | 24 'target_name': 'default', |
24 'type': 'none', | 25 'type': 'none', |
25 'dependencies': [ | 26 'dependencies': [ |
26 'analyzer', | 27 'analyzer', |
27 'compiler', | 28 'compiler', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 }, | 60 }, |
60 { | 61 { |
61 # Build the SDK. This target is separate from upload_sdk as the | 62 # Build the SDK. This target is separate from upload_sdk as the |
62 # editor needs to build the SDK without uploading it. | 63 # editor needs to build the SDK without uploading it. |
63 'target_name': 'create_sdk', | 64 'target_name': 'create_sdk', |
64 'type': 'none', | 65 'type': 'none', |
65 'dependencies': [ | 66 'dependencies': [ |
66 'runtime/dart-runtime.gyp:dart', | 67 'runtime/dart-runtime.gyp:dart', |
67 'utils/compiler/compiler.gyp:dart2js', | 68 'utils/compiler/compiler.gyp:dart2js', |
68 'compiler', | 69 'compiler', |
69 'packages' | |
70 ], | 70 ], |
71 'actions': [ | 71 'actions': [ |
72 { | 72 { |
73 'action_name': 'create_sdk_py', | 73 'action_name': 'create_sdk_py', |
74 'inputs': [ | 74 'inputs': [ |
75 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 75 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
76 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 76 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
77 'tools/create_sdk.py', | 77 'tools/create_sdk.py', |
78 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 78 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
79 '<(PRODUCT_DIR)/dart2js.snapshot', | 79 '<(PRODUCT_DIR)/dart2js.snapshot', |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 }, | 229 }, |
230 { | 230 { |
231 'target_name': 'packages', | 231 'target_name': 'packages', |
232 'type': 'none', | 232 'type': 'none', |
233 'dependencies': [ | 233 'dependencies': [ |
234 'pkg/pkg.gyp:pkg_packages', | 234 'pkg/pkg.gyp:pkg_packages', |
235 ], | 235 ], |
236 }, | 236 }, |
237 ], | 237 ], |
238 } | 238 } |
OLD | NEW |