| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 { | 81 { |
| 82 # Upload the SDK. This target is separate from create_sdk as the | 82 # Upload the SDK. This target is separate from create_sdk as the |
| 83 # editor needs to build the SDK without uploading it. | 83 # editor needs to build the SDK without uploading it. |
| 84 'target_name': 'upload_sdk', | 84 'target_name': 'upload_sdk', |
| 85 'type': 'none', | 85 'type': 'none', |
| 86 'dependencies': [ | 86 'dependencies': [ |
| 87 'create_sdk', | 87 'create_sdk', |
| 88 ], | 88 ], |
| 89 'inputs': [ |
| 90 '<(PRODUCT_DIR)/dart-sdk/README', |
| 91 ], |
| 89 'actions': [ | 92 'actions': [ |
| 90 { | 93 { |
| 91 'action_name': 'upload_sdk_py', | 94 'action_name': 'upload_sdk_py', |
| 92 'inputs': [ | 95 'inputs': [ |
| 93 '<(PRODUCT_DIR)/dart-sdk/README', | 96 '<(PRODUCT_DIR)/dart-sdk/README', |
| 94 'tools/upload_sdk.py', | 97 'tools/upload_sdk.py', |
| 95 ], | 98 ], |
| 96 'outputs': [ | 99 'outputs': [ |
| 97 '<(PRODUCT_DIR)/dart-sdk/upload.stamp', | 100 '<(PRODUCT_DIR)/dart-sdk/upload.stamp', |
| 98 ], | 101 ], |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 'type': 'none', | 151 'type': 'none', |
| 149 'dependencies': [ | 152 'dependencies': [ |
| 150 'create_sdk', | 153 'create_sdk', |
| 151 'packages', | 154 'packages', |
| 152 ], | 155 ], |
| 153 }, | 156 }, |
| 154 { | 157 { |
| 155 'target_name': 'api_docs', | 158 'target_name': 'api_docs', |
| 156 'type': 'none', | 159 'type': 'none', |
| 157 'dependencies': [ | 160 'dependencies': [ |
| 161 # TODO(alanknight) : Once we're fully switched over to the new |
| 162 # viewer remove the old api_docs gyp file. |
| 158 'utils/apidoc/apidoc.gyp:api_docs', | 163 'utils/apidoc/apidoc.gyp:api_docs', |
| 164 'utils/apidoc/docgen.gyp:docgen', |
| 159 ], | 165 ], |
| 160 }, | 166 }, |
| 161 { | 167 { |
| 162 'target_name': 'editor', | 168 'target_name': 'editor', |
| 163 'type': 'none', | 169 'type': 'none', |
| 164 'dependencies': [ | 170 'dependencies': [ |
| 165 'editor/build/generated/editor_deps.gyp:editor_deps', | 171 'editor/build/generated/editor_deps.gyp:editor_deps', |
| 166 | 172 |
| 167 # This dependency on create_sdk does not mean that the Editor | 173 # This dependency on create_sdk does not mean that the Editor |
| 168 # is rebuilt if the SDK is. It only means that when you build | 174 # is rebuilt if the SDK is. It only means that when you build |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 }, | 217 }, |
| 212 { | 218 { |
| 213 'target_name': 'packages', | 219 'target_name': 'packages', |
| 214 'type': 'none', | 220 'type': 'none', |
| 215 'dependencies': [ | 221 'dependencies': [ |
| 216 'pkg/pkg.gyp:pkg_packages', | 222 'pkg/pkg.gyp:pkg_packages', |
| 217 ], | 223 ], |
| 218 }, | 224 }, |
| 219 ], | 225 ], |
| 220 } | 226 } |
| OLD | NEW |