| 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': [ |
| 11 'compiler/dart-compiler.gyp:dartc', | 11 'compiler/dart-compiler.gyp:dartc', |
| 12 ], | 12 ], |
| 13 'actions': [] | 13 'actions': [] |
| 14 }, | 14 }, |
| 15 { | 15 { |
| 16 'target_name': 'runtime', | 16 'target_name': 'runtime', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 'runtime/dart-runtime.gyp:dart', | 19 'runtime/dart-runtime.gyp:dart', |
| 20 'runtime/dart-runtime.gyp:run_vm_tests', | 20 'runtime/dart-runtime.gyp:run_vm_tests', |
| 21 'runtime/dart-runtime.gyp:process_test', | 21 'runtime/dart-runtime.gyp:process_test', |
| 22 'runtime/dart-runtime.gyp:test_extension', | 22 'runtime/dart-runtime.gyp:test_extension', |
| 23 'runtime/dart-runtime.gyp:sample_extension', | |
| 24 ], | 23 ], |
| 25 }, | 24 }, |
| 26 { | 25 { |
| 27 # Build the SDK. This target is separate from upload_sdk as the | 26 # Build the SDK. This target is separate from upload_sdk as the |
| 28 # editor needs to build the SDK without uploading it. | 27 # editor needs to build the SDK without uploading it. |
| 29 'target_name': 'create_sdk', | 28 'target_name': 'create_sdk', |
| 30 'type': 'none', | 29 'type': 'none', |
| 31 'dependencies': [ | 30 'dependencies': [ |
| 32 'runtime/dart-runtime.gyp:dart', | 31 'runtime/dart-runtime.gyp:dart', |
| 33 'dart2js', | 32 'dart2js', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 }, | 95 }, |
| 97 { | 96 { |
| 98 'target_name': 'api_docs', | 97 'target_name': 'api_docs', |
| 99 'type': 'none', | 98 'type': 'none', |
| 100 'dependencies': [ | 99 'dependencies': [ |
| 101 'utils/apidoc/apidoc.gyp:api_docs', | 100 'utils/apidoc/apidoc.gyp:api_docs', |
| 102 ], | 101 ], |
| 103 } | 102 } |
| 104 ], | 103 ], |
| 105 } | 104 } |
| OLD | NEW |