| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 DEPS = [ | 5 DEPS = [ |
| 6 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
| 7 'file', | 7 'file', |
| 8 'depot_tools/gclient', | 8 'depot_tools/gclient', |
| 9 'recipe_engine/path', | 9 'recipe_engine/path', |
| 10 'recipe_engine/platform', | 10 'recipe_engine/platform', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 '--builder-tag=no_ipv6'], | 98 '--builder-tag=no_ipv6'], |
| 99 } | 99 } |
| 100 builders['precomp-linux-%s-x64' % mode] = { | 100 builders['precomp-linux-%s-x64' % mode] = { |
| 101 'mode': mode, | 101 'mode': mode, |
| 102 'target_arch': 'x64', | 102 'target_arch': 'x64', |
| 103 'env': default_envs['linux'], | 103 'env': default_envs['linux'], |
| 104 'test_args': ['-cprecompiler', '-rdart_precompiled', '--use-blobs', | 104 'test_args': ['-cprecompiler', '-rdart_precompiled', '--use-blobs', |
| 105 '--builder-tag=no_ipv6'], | 105 '--builder-tag=no_ipv6'], |
| 106 'build_args': ['runtime_precompiled'], | 106 'build_args': ['runtime_precompiled'], |
| 107 } | 107 } |
| 108 builders['vm-linux-%s-x64-live-reload' % mode] = { | 108 builders['vm-linux-%s-x64-reload' % mode] = { |
| 109 'mode': mode, | 109 'mode': mode, |
| 110 'target_arch': 'x64', | 110 'target_arch': 'x64', |
| 111 'env': default_envs['linux'], | 111 'env': default_envs['linux'], |
| 112 'checked': True, | 112 'checked': True, |
| 113 'test_args': ['--hot-reload', | 113 'test_args': ['--hot-reload', |
| 114 '--builder-tag=no_ipv6'], | 114 '--builder-tag=no_ipv6'], |
| 115 } | 115 } |
| 116 builders['vm-linux-%s-x64-stress-reload' % mode] = { | 116 builders['vm-linux-%s-x64-reload-rollback' % mode] = { |
| 117 'mode': mode, | 117 'mode': mode, |
| 118 'target_arch': 'x64', | 118 'target_arch': 'x64', |
| 119 'env': default_envs['linux'], | 119 'env': default_envs['linux'], |
| 120 'checked': True, | 120 'checked': True, |
| 121 'test_args': ['--hot-reload-rollback', | 121 'test_args': ['--hot-reload-rollback', |
| 122 '--builder-tag=no_ipv6'], | 122 '--builder-tag=no_ipv6'], |
| 123 } | 123 } |
| 124 | 124 |
| 125 | 125 |
| 126 def RunSteps(api): | 126 def RunSteps(api): |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 184 |
| 185 def GenTests(api): | 185 def GenTests(api): |
| 186 yield ( | 186 yield ( |
| 187 api.test('vm-linux-release-x64-asan-be') + api.platform('linux', 64) + | 187 api.test('vm-linux-release-x64-asan-be') + api.platform('linux', 64) + |
| 188 api.properties.generic(mastername='client.dart', | 188 api.properties.generic(mastername='client.dart', |
| 189 buildername='vm-linux-release-x64-asan-be')) | 189 buildername='vm-linux-release-x64-asan-be')) |
| 190 yield ( | 190 yield ( |
| 191 api.test('test-coverage') + api.platform('linux', 32) + | 191 api.test('test-coverage') + api.platform('linux', 32) + |
| 192 api.properties.generic(mastername='client.dart', | 192 api.properties.generic(mastername='client.dart', |
| 193 buildername='test-coverage-be')) | 193 buildername='test-coverage-be')) |
| OLD | NEW |