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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'action_name': 'create_sdk_py', | 56 'action_name': 'create_sdk_py', |
57 'inputs': [ | 57 'inputs': [ |
58 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 58 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
59 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 59 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
60 'tools/create_sdk.py', | 60 'tools/create_sdk.py', |
61 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 61 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
62 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 62 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
63 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 63 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
64 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 64 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
65 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', | 65 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', |
| 66 'tools/VERSION' |
66 ], | 67 ], |
67 'outputs': [ | 68 'outputs': [ |
68 '<(PRODUCT_DIR)/dart-sdk/README', | 69 '<(PRODUCT_DIR)/dart-sdk/README', |
69 ], | 70 ], |
70 'action': [ | 71 'action': [ |
71 'python', | 72 'python', |
72 'tools/create_sdk.py', | 73 'tools/create_sdk.py', |
73 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 74 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
74 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' | 75 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' |
75 ], | 76 ], |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 }, | 211 }, |
211 { | 212 { |
212 'target_name': 'packages', | 213 'target_name': 'packages', |
213 'type': 'none', | 214 'type': 'none', |
214 'dependencies': [ | 215 'dependencies': [ |
215 'pkg/pkg.gyp:pkg_packages', | 216 'pkg/pkg.gyp:pkg_packages', |
216 ], | 217 ], |
217 }, | 218 }, |
218 ], | 219 ], |
219 } | 220 } |
OLD | NEW |