| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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': 'create_sdk_internal', | 8 'target_name': 'create_sdk_internal', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 34 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
| 35 'tools/create_sdk.py', | 35 'tools/create_sdk.py', |
| 36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 37 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 37 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
| 38 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 38 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
| 39 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 39 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
| 40 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', | 40 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', |
| 41 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', | 41 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
| 42 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', | 42 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', |
| 43 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', | 43 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', |
| 44 '<(SHARED_INTERMEDIATE_DIR)/spec.sum', |
| 45 '<(SHARED_INTERMEDIATE_DIR)/strong.sum', |
| 44 'tools/VERSION' | 46 'tools/VERSION' |
| 45 ], | 47 ], |
| 46 'outputs': [ | 48 'outputs': [ |
| 47 '<(PRODUCT_DIR)/dart-sdk/README', | 49 '<(PRODUCT_DIR)/dart-sdk/README', |
| 48 ], | 50 ], |
| 49 'action': [ | 51 'action': [ |
| 50 'python', | 52 'python', |
| 51 'tools/create_sdk.py', | 53 'tools/create_sdk.py', |
| 52 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 54 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
| 53 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' | 55 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' |
| 54 ], | 56 ], |
| 55 'message': 'Creating SDK.', | 57 'message': 'Creating SDK.', |
| 56 }, | 58 }, |
| 57 ], | 59 ], |
| 58 }, | 60 }, |
| 59 ], | 61 ], |
| 60 } | 62 } |
| OLD | NEW |