Chromium Code Reviews| 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:dart_analyzer', | 11 'compiler/dart-compiler.gyp:dart_analyzer', |
| 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 ], | 23 ], |
| 24 }, | 24 }, |
| 25 { | 25 { |
| 26 'target_name': 'samples', | |
|
ahe
2012/08/07 11:42:31
I think it would be nice if you added this to the
Bill Hesse
2012/08/07 12:23:19
Done.
| |
| 27 'type': 'none', | |
| 28 'dependencies': [ | |
| 29 'samples/samples.gyp:sample_extension', | |
| 30 ], | |
| 31 }, | |
| 32 { | |
| 26 # Build the SDK. This target is separate from upload_sdk as the | 33 # Build the SDK. This target is separate from upload_sdk as the |
| 27 # editor needs to build the SDK without uploading it. | 34 # editor needs to build the SDK without uploading it. |
| 28 'target_name': 'create_sdk', | 35 'target_name': 'create_sdk', |
| 29 'type': 'none', | 36 'type': 'none', |
| 30 'dependencies': [ | 37 'dependencies': [ |
| 31 'runtime/dart-runtime.gyp:dart', | 38 'runtime/dart-runtime.gyp:dart', |
| 32 'dart2js', | 39 'dart2js', |
| 33 ], | 40 ], |
| 34 'actions': [ | 41 'actions': [ |
| 35 { | 42 { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 103 }, | 110 }, |
| 104 { | 111 { |
| 105 'target_name': 'api_docs', | 112 'target_name': 'api_docs', |
| 106 'type': 'none', | 113 'type': 'none', |
| 107 'dependencies': [ | 114 'dependencies': [ |
| 108 'utils/apidoc/apidoc.gyp:api_docs', | 115 'utils/apidoc/apidoc.gyp:api_docs', |
| 109 ], | 116 ], |
| 110 } | 117 } |
| 111 ], | 118 ], |
| 112 } | 119 } |
| OLD | NEW |