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 from infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
6 from recipe_engine import recipe_api | 6 from recipe_engine import recipe_api |
7 | 7 |
8 DEPS = [ | 8 DEPS = [ |
9 'archive', | 9 'archive', |
10 'amp', | 10 'amp', |
11 'bot_update', | 11 'bot_update', |
12 'chromium', | 12 'chromium', |
13 'chromium_android', | 13 'chromium_android', |
14 'filter', | 14 'filter', |
15 'gclient', | 15 'gclient', |
16 'itertools', | |
17 'json', | 16 'json', |
18 'path', | 17 'path', |
19 'properties', | 18 'properties', |
20 'step', | 19 'step', |
21 'tryserver', | 20 'tryserver', |
22 ] | 21 ] |
23 | 22 |
24 CHROMIUM_AMP_INSTRUMENTATION_TESTS = freeze([ | 23 CHROMIUM_AMP_INSTRUMENTATION_TESTS = freeze([ |
25 { | 24 { |
26 'gyp_target': 'content_shell_test_apk', | 25 'gyp_target': 'content_shell_test_apk', |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 api.properties.generic( | 376 api.properties.generic( |
378 mastername='tryserver.chromium.linux', | 377 mastername='tryserver.chromium.linux', |
379 buildername='android_amp_rel_tests_recipe', | 378 buildername='android_amp_rel_tests_recipe', |
380 slavename='slavename') + | 379 slavename='slavename') + |
381 api.override_step_data( | 380 api.override_step_data( |
382 'analyze', | 381 'analyze', |
383 api.json.output({ | 382 api.json.output({ |
384 'status': 'Found dependency', | 383 'status': 'Found dependency', |
385 'targets': [], | 384 'targets': [], |
386 'build_targets': ['base_unittests']}))) | 385 'build_targets': ['base_unittests']}))) |
OLD | NEW |