| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 # We have this additional target because the try target takes to long | 87 # We have this additional target because the try target takes to long |
| 88 # to build in debug mode and will make the build step time out. | 88 # to build in debug mode and will make the build step time out. |
| 89 'target_name': 'dart2js_bot_debug', | 89 'target_name': 'dart2js_bot_debug', |
| 90 'type': 'none', | 90 'type': 'none', |
| 91 'dependencies': [ | 91 'dependencies': [ |
| 92 'create_sdk', | 92 'create_sdk', |
| 93 'packages', | 93 'packages', |
| 94 ], | 94 ], |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 'target_name': 'api_docs', | |
| 98 'type': 'none', | |
| 99 'dependencies': [ | |
| 100 'utils/apidoc/docgen.gyp:dartdocgen', | |
| 101 ], | |
| 102 }, | |
| 103 { | |
| 104 'target_name': 'samples', | 97 'target_name': 'samples', |
| 105 'type': 'none', | 98 'type': 'none', |
| 106 'dependencies': [], | 99 'dependencies': [], |
| 107 'conditions': [ | 100 'conditions': [ |
| 108 ['OS!="android"', { | 101 ['OS!="android"', { |
| 109 'dependencies': [ | 102 'dependencies': [ |
| 110 'runtime/dart-runtime.gyp:sample_extension', | 103 'runtime/dart-runtime.gyp:sample_extension', |
| 111 ], | 104 ], |
| 112 }, | 105 }, |
| 113 ], | 106 ], |
| 114 ] | 107 ] |
| 115 }, | 108 }, |
| 116 { | 109 { |
| 117 'target_name': 'packages', | 110 'target_name': 'packages', |
| 118 'type': 'none', | 111 'type': 'none', |
| 119 'dependencies': [ | 112 'dependencies': [ |
| 120 'pkg/pkg.gyp:pkg_packages', | 113 'pkg/pkg.gyp:pkg_packages', |
| 121 ], | 114 ], |
| 122 }, | 115 }, |
| 123 { | 116 { |
| 124 'target_name': 'try', | 117 'target_name': 'try', |
| 125 'type': 'none', | 118 'type': 'none', |
| 126 'dependencies': [ | 119 'dependencies': [ |
| 127 'site/try/build_try.gyp:try_site', | 120 'site/try/build_try.gyp:try_site', |
| 128 ], | 121 ], |
| 129 }, | 122 }, |
| 130 ], | 123 ], |
| 131 } | 124 } |
| OLD | NEW |