| 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', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'compiler', | 67 'compiler', |
| 68 ], | 68 ], |
| 69 'actions': [ | 69 'actions': [ |
| 70 { | 70 { |
| 71 'action_name': 'create_sdk_py', | 71 'action_name': 'create_sdk_py', |
| 72 'inputs': [ | 72 'inputs': [ |
| 73 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 73 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
| 74 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 74 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
| 75 'tools/create_sdk.py', | 75 'tools/create_sdk.py', |
| 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 77 '<(PRODUCT_DIR)/dart2js.snapshot', | 77 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
| 78 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 78 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
| 79 ], | 79 ], |
| 80 'outputs': [ | 80 'outputs': [ |
| 81 '<(PRODUCT_DIR)/dart-sdk/README', | 81 '<(PRODUCT_DIR)/dart-sdk/README', |
| 82 ], | 82 ], |
| 83 'action': [ | 83 'action': [ |
| 84 'python', | 84 'python', |
| 85 'tools/create_sdk.py', | 85 'tools/create_sdk.py', |
| 86 '<(PRODUCT_DIR)/dart-sdk', | 86 '<(PRODUCT_DIR)/dart-sdk', |
| 87 '<(SHARED_INTERMEDIATE_DIR)' |
| 87 ], | 88 ], |
| 88 'message': 'Creating SDK.', | 89 'message': 'Creating SDK.', |
| 89 }, | 90 }, |
| 90 ], | 91 ], |
| 91 }, | 92 }, |
| 92 { | 93 { |
| 93 # Upload the SDK. This target is separate from create_sdk as the | 94 # Upload the SDK. This target is separate from create_sdk as the |
| 94 # editor needs to build the SDK without uploading it. | 95 # editor needs to build the SDK without uploading it. |
| 95 'target_name': 'upload_sdk', | 96 'target_name': 'upload_sdk', |
| 96 'type': 'none', | 97 'type': 'none', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 }, | 227 }, |
| 227 { | 228 { |
| 228 'target_name': 'packages', | 229 'target_name': 'packages', |
| 229 'type': 'none', | 230 'type': 'none', |
| 230 'dependencies': [ | 231 'dependencies': [ |
| 231 'pkg/pkg.gyp:pkg_packages', | 232 'pkg/pkg.gyp:pkg_packages', |
| 232 ], | 233 ], |
| 233 }, | 234 }, |
| 234 ], | 235 ], |
| 235 } | 236 } |
| OLD | NEW |