OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'adb', | 8 'adb', |
9 'bot_update', | 9 'bot_update', |
10 'chromium', | 10 'chromium', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 }, | 71 }, |
72 'android_rel_tests_recipe': { | 72 'android_rel_tests_recipe': { |
73 'config': 'trybot_builder', | 73 'config': 'trybot_builder', |
74 'instrumentation_tests': INSTRUMENTATION_TESTS, | 74 'instrumentation_tests': INSTRUMENTATION_TESTS, |
75 'unittests': UNIT_TESTS, | 75 'unittests': UNIT_TESTS, |
76 'java_unittests': JAVA_UNIT_TESTS, | 76 'java_unittests': JAVA_UNIT_TESTS, |
77 'python_unittests': PYTHON_UNIT_TESTS, | 77 'python_unittests': PYTHON_UNIT_TESTS, |
78 'target': 'Release', | 78 'target': 'Release', |
79 'try': True, | 79 'try': True, |
80 }, | 80 }, |
| 81 'android_n5_rel_tests_recipe': { |
| 82 'config': 'trybot_builder', |
| 83 'instrumentation_tests': INSTRUMENTATION_TESTS, |
| 84 'unittests': UNIT_TESTS, |
| 85 'java_unittests': JAVA_UNIT_TESTS, |
| 86 'python_unittests': PYTHON_UNIT_TESTS, |
| 87 'target': 'Release', |
| 88 'try': True, |
| 89 }, |
81 'EXAMPLE_android_rel_telemetry_tests_recipe': { | 90 'EXAMPLE_android_rel_telemetry_tests_recipe': { |
82 'config': 'main_builder', | 91 'config': 'main_builder', |
83 'instrumentation_tests': [], | 92 'instrumentation_tests': [], |
84 'unittests': [], | 93 'unittests': [], |
85 'telemetry_unittests': True, | 94 'telemetry_unittests': True, |
86 'telemetry_perf_unittests': True, | 95 'telemetry_perf_unittests': True, |
87 'java_unittests': [], | 96 'java_unittests': [], |
88 'python_unittests': [], | 97 'python_unittests': [], |
89 'target': 'Release', | 98 'target': 'Release', |
90 }, | 99 }, |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 yield ( | 287 yield ( |
279 api.test('no_compile_because_of_analyze') + | 288 api.test('no_compile_because_of_analyze') + |
280 api.properties.generic( | 289 api.properties.generic( |
281 mastername='tryserver.chromium.linux', | 290 mastername='tryserver.chromium.linux', |
282 buildername='android_dbg_tests_recipe', | 291 buildername='android_dbg_tests_recipe', |
283 slavename='slavename') + | 292 slavename='slavename') + |
284 api.override_step_data( | 293 api.override_step_data( |
285 'analyze', | 294 'analyze', |
286 api.json.output({'status': 'No compile necessary'})) | 295 api.json.output({'status': 'No compile necessary'})) |
287 ) | 296 ) |
OLD | NEW |