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': 'most', | 8 'target_name': 'most', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 }, | 107 }, |
| 108 { | 108 { |
| 109 # This is the target that is built on the dart2js build bots. | 109 # This is the target that is built on the dart2js build bots. |
| 110 # It must depend on anything that is required by the dart2js | 110 # It must depend on anything that is required by the dart2js |
| 111 # test suites. | 111 # test suites. |
| 112 'target_name': 'dart2js_bot', | 112 'target_name': 'dart2js_bot', |
| 113 'type': 'none', | 113 'type': 'none', |
| 114 'dependencies': [ | 114 'dependencies': [ |
| 115 'create_sdk', | 115 'create_sdk', |
| 116 'packages', | 116 'packages', |
| 117 'try', | |
| 118 ], | |
| 119 }, | |
| 120 { | |
| 121 # This is the target that is built on the dart2js debug build bots. | |
| 122 # It must depend on anything that is required by the dart2js | |
| 123 # test suites. | |
| 124 # We have this additional target because the try target takes to long | |
| 125 # to build in debug mode and will make the build step time out. | |
| 126 'target_name': 'dart2js_bot_debug', | |
|
Siggi Cherem (dart-lang)
2016/08/12 16:52:29
Bill - I checked the bot recipes and this is not c
| |
| 127 'type': 'none', | |
| 128 'dependencies': [ | |
| 129 'create_sdk', | |
| 130 'packages', | |
| 131 ], | 117 ], |
| 132 }, | 118 }, |
| 133 { | 119 { |
| 134 'target_name': 'samples', | 120 'target_name': 'samples', |
| 135 'type': 'none', | 121 'type': 'none', |
| 136 'dependencies': [], | 122 'dependencies': [], |
| 137 'conditions': [ | 123 'conditions': [ |
| 138 ['OS!="android"', { | 124 ['OS!="android"', { |
| 139 'dependencies': [ | 125 'dependencies': [ |
| 140 'runtime/dart-runtime.gyp:sample_extension', | 126 'runtime/dart-runtime.gyp:sample_extension', |
| 141 ], | 127 ], |
| 142 }, | 128 }, |
| 143 ], | 129 ], |
| 144 ] | 130 ] |
| 145 }, | 131 }, |
| 146 { | 132 { |
| 147 'target_name': 'packages', | 133 'target_name': 'packages', |
| 148 'type': 'none', | 134 'type': 'none', |
| 149 'dependencies': [ | 135 'dependencies': [ |
| 150 'pkg/pkg.gyp:pkg_packages', | 136 'pkg/pkg.gyp:pkg_packages', |
| 151 ], | 137 ], |
| 152 }, | 138 }, |
| 153 { | |
| 154 'target_name': 'try', | |
| 155 'type': 'none', | |
| 156 'dependencies': [ | |
| 157 'site/try/build_try.gyp:try_site', | |
| 158 ], | |
| 159 }, | |
| 160 ], | 139 ], |
| 161 } | 140 } |
| OLD | NEW |