| 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': 'compiler', | 8 'target_name': 'compiler', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 # Build the SDK. This target is separate from upload_sdk as the | 25 # Build the SDK. This target is separate from upload_sdk as the |
| 26 # editor needs to build the SDK without uploading it. | 26 # editor needs to build the SDK without uploading it. |
| 27 'target_name': 'create_sdk', | 27 'target_name': 'create_sdk', |
| 28 'type': 'none', | 28 'type': 'none', |
| 29 'dependencies': [ | 29 'dependencies': [ |
| 30 'runtime/dart-runtime.gyp:dart', | 30 'runtime/dart-runtime.gyp:dart', |
| 31 'dart2js', | 31 'dart2js', |
| 32 'compiler', | |
| 33 ], | 32 ], |
| 34 'actions': [ | 33 'actions': [ |
| 35 { | 34 { |
| 36 'action_name': 'create_sdk_py', | 35 'action_name': 'create_sdk_py', |
| 37 'inputs': [ | 36 'inputs': [ |
| 38 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', | 37 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', |
| 39 'frog/scripts/bootstrap/frogc', | 38 'frog/scripts/bootstrap/frogc', |
| 40 'tools/create_sdk.py', | 39 'tools/create_sdk.py', |
| 41 '<(PRODUCT_DIR)/frog/bin/frog', | 40 '<(PRODUCT_DIR)/frog/bin/frog', |
| 42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 41 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 }, | 94 }, |
| 96 { | 95 { |
| 97 'target_name': 'api_docs', | 96 'target_name': 'api_docs', |
| 98 'type': 'none', | 97 'type': 'none', |
| 99 'dependencies': [ | 98 'dependencies': [ |
| 100 'utils/apidoc/apidoc.gyp:api_docs', | 99 'utils/apidoc/apidoc.gyp:api_docs', |
| 101 ], | 100 ], |
| 102 } | 101 } |
| 103 ], | 102 ], |
| 104 } | 103 } |
| OLD | NEW |