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