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 }, | |
90 'EXAMPLE_android_rel_telemetry_tests_recipe': { | 81 'EXAMPLE_android_rel_telemetry_tests_recipe': { |
91 'config': 'main_builder', | 82 'config': 'main_builder', |
92 'instrumentation_tests': [], | 83 'instrumentation_tests': [], |
93 'unittests': [], | 84 'unittests': [], |
94 'telemetry_unittests': True, | 85 'telemetry_unittests': True, |
95 'telemetry_perf_unittests': True, | 86 'telemetry_perf_unittests': True, |
96 'java_unittests': [], | 87 'java_unittests': [], |
97 'python_unittests': [], | 88 'python_unittests': [], |
98 'target': 'Release', | 89 'target': 'Release', |
99 }, | 90 }, |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 yield ( | 278 yield ( |
288 api.test('no_compile_because_of_analyze') + | 279 api.test('no_compile_because_of_analyze') + |
289 api.properties.generic( | 280 api.properties.generic( |
290 mastername='tryserver.chromium.linux', | 281 mastername='tryserver.chromium.linux', |
291 buildername='android_dbg_tests_recipe', | 282 buildername='android_dbg_tests_recipe', |
292 slavename='slavename') + | 283 slavename='slavename') + |
293 api.override_step_data( | 284 api.override_step_data( |
294 'analyze', | 285 'analyze', |
295 api.json.output({'status': 'No compile necessary'})) | 286 api.json.output({'status': 'No compile necessary'})) |
296 ) | 287 ) |
OLD | NEW |