| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 recipe_engine import recipe_api | 5 from recipe_engine import recipe_api |
| 6 from recipe_engine.types import freeze | 6 from recipe_engine.types import freeze |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'adb', | 9 'adb', |
| 10 'archive', | 10 'archive', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 api.test( | 111 api.test( |
| 112 '%s_test_failure' % sanitize('Android ChromeDriver Tests (dbg)')) + | 112 '%s_test_failure' % sanitize('Android ChromeDriver Tests (dbg)')) + |
| 113 api.properties.generic( | 113 api.properties.generic( |
| 114 buildername='Android ChromeDriver Tests (dbg)', | 114 buildername='Android ChromeDriver Tests (dbg)', |
| 115 slavename='slavename', | 115 slavename='slavename', |
| 116 mastername='chromium.fyi') + | 116 mastername='chromium.fyi') + |
| 117 api.properties( | 117 api.properties( |
| 118 parent_build_archive_url='gs://test-domain/test-archive.zip', | 118 parent_build_archive_url='gs://test-domain/test-archive.zip', |
| 119 got_revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', | 119 got_revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', |
| 120 got_revision_cp='refs/heads/master@{#333333}') + | 120 got_revision_cp='refs/heads/master@{#333333}') + |
| 121 api.step_data('java_tests chrome_stable', retcode=1)) | 121 api.step_data('java_tests chrome_stable.Run Tests', retcode=1)) |
| OLD | NEW |