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 'target_name': 'most', | 8 'target_name': 'most', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 28 matching lines...) Expand all Loading... |
39 }], | 39 }], |
40 ], | 40 ], |
41 }, | 41 }, |
42 { | 42 { |
43 'target_name': 'create_sdk', | 43 'target_name': 'create_sdk', |
44 'type': 'none', | 44 'type': 'none', |
45 'dependencies': [ | 45 'dependencies': [ |
46 'runtime/dart-runtime.gyp:dart', | 46 'runtime/dart-runtime.gyp:dart', |
47 'utils/compiler/compiler.gyp:dart2js', | 47 'utils/compiler/compiler.gyp:dart2js', |
48 'utils/pub/pub.gyp:pub', | 48 'utils/pub/pub.gyp:pub', |
| 49 'dartfmt', |
49 'analyzer', | 50 'analyzer', |
50 ], | 51 ], |
51 'actions': [ | 52 'actions': [ |
52 { | 53 { |
53 'action_name': 'create_sdk_py', | 54 'action_name': 'create_sdk_py', |
54 'inputs': [ | 55 'inputs': [ |
55 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 56 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
56 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 57 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
57 'tools/create_sdk.py', | 58 'tools/create_sdk.py', |
58 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 59 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
59 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 60 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
60 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 61 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
61 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 62 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
62 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', | 63 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', |
| 64 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
63 'tools/VERSION' | 65 'tools/VERSION' |
64 ], | 66 ], |
65 'outputs': [ | 67 'outputs': [ |
66 '<(PRODUCT_DIR)/dart-sdk/README', | 68 '<(PRODUCT_DIR)/dart-sdk/README', |
67 ], | 69 ], |
68 'action': [ | 70 'action': [ |
69 'python', | 71 'python', |
70 'tools/create_sdk.py', | 72 'tools/create_sdk.py', |
71 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 73 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
72 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' | 74 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' |
(...skipping 10 matching lines...) Expand all Loading... |
83 ], | 85 ], |
84 }, | 86 }, |
85 { | 87 { |
86 'target_name': 'analyzer', | 88 'target_name': 'analyzer', |
87 'type': 'none', | 89 'type': 'none', |
88 'dependencies': [ | 90 'dependencies': [ |
89 'editor/analyzer.gyp:analyzer', | 91 'editor/analyzer.gyp:analyzer', |
90 ], | 92 ], |
91 }, | 93 }, |
92 { | 94 { |
| 95 'target_name': 'dartfmt', |
| 96 'type': 'none', |
| 97 'dependencies': [ |
| 98 'utils/dartfmt/dartfmt.gyp:dartfmt', |
| 99 ], |
| 100 }, |
| 101 { |
93 # This is the target that is built on the dart2dart bots. | 102 # This is the target that is built on the dart2dart bots. |
94 # It must depend on anything that is required by dart2dart | 103 # It must depend on anything that is required by dart2dart |
95 # tests. | 104 # tests. |
96 'target_name': 'dart2dart_bot', | 105 'target_name': 'dart2dart_bot', |
97 'type': 'none', | 106 'type': 'none', |
98 'dependencies': [ | 107 'dependencies': [ |
99 'create_sdk', | 108 'create_sdk', |
100 'packages', | 109 'packages', |
101 ], | 110 ], |
102 }, | 111 }, |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 }, | 194 }, |
186 { | 195 { |
187 'target_name': 'packages', | 196 'target_name': 'packages', |
188 'type': 'none', | 197 'type': 'none', |
189 'dependencies': [ | 198 'dependencies': [ |
190 'pkg/pkg.gyp:pkg_packages', | 199 'pkg/pkg.gyp:pkg_packages', |
191 ], | 200 ], |
192 }, | 201 }, |
193 ], | 202 ], |
194 } | 203 } |
OLD | NEW |