| OLD | NEW |
| 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 |
| 3 # found in the LICENSE file. |
| 1 | 4 |
| 2 DEPS = [ | 5 DEPS = [ |
| 3 'amp', | 6 'amp', |
| 4 'json', | 7 'json', |
| 5 'path', | 8 'path', |
| 6 'properties', | 9 'properties', |
| 7 ] | 10 ] |
| 8 | 11 |
| 9 BUILDERS = { | 12 BUILDERS = { |
| 10 'normal_example': { | 13 'normal_example': { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 api.test('bad_device_data_for_collect') + | 184 api.test('bad_device_data_for_collect') + |
| 182 api.properties.generic(buildername='split_example') + | 185 api.properties.generic(buildername='split_example') + |
| 183 api.override_step_data('[collect] load example_gtest_suite data', | 186 api.override_step_data('[collect] load example_gtest_suite data', |
| 184 api.json.output({}))) | 187 api.json.output({}))) |
| 185 | 188 |
| 186 yield ( | 189 yield ( |
| 187 api.test('bad_test_id_data_for_upload') + | 190 api.test('bad_test_id_data_for_upload') + |
| 188 api.properties.generic(buildername='split_example') + | 191 api.properties.generic(buildername='split_example') + |
| 189 api.override_step_data('[upload logcat] load example_gtest_suite data', | 192 api.override_step_data('[upload logcat] load example_gtest_suite data', |
| 190 api.json.output({}))) | 193 api.json.output({}))) |
| OLD | NEW |