| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 64 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
| 65 ], | 65 ], |
| 66 'outputs': [ | 66 'outputs': [ |
| 67 '<(PRODUCT_DIR)/dart-sdk/README', | 67 '<(PRODUCT_DIR)/dart-sdk/README', |
| 68 ], | 68 ], |
| 69 'action': [ | 69 'action': [ |
| 70 'python', | 70 'python', |
| 71 'tools/create_sdk.py', | 71 'tools/create_sdk.py', |
| 72 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 72 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
| 73 '--utils_snapshot_location', | 73 '--utils_snapshot_location', |
| 74 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot' | 74 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot' |
| 75 ], | 75 ], |
| 76 'message': 'Creating SDK.', | 76 'message': 'Creating SDK.', |
| 77 }, | 77 }, |
| 78 ], | 78 ], |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 # Upload the SDK. This target is separate from create_sdk as the | 81 # Upload the SDK. This target is separate from create_sdk as the |
| 82 # editor needs to build the SDK without uploading it. | 82 # editor needs to build the SDK without uploading it. |
| 83 'target_name': 'upload_sdk', | 83 'target_name': 'upload_sdk', |
| 84 'type': 'none', | 84 'type': 'none', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 }, | 214 }, |
| 215 { | 215 { |
| 216 'target_name': 'packages', | 216 'target_name': 'packages', |
| 217 'type': 'none', | 217 'type': 'none', |
| 218 'dependencies': [ | 218 'dependencies': [ |
| 219 'pkg/pkg.gyp:pkg_packages', | 219 'pkg/pkg.gyp:pkg_packages', |
| 220 ], | 220 ], |
| 221 }, | 221 }, |
| 222 ], | 222 ], |
| 223 } | 223 } |
| OLD | NEW |