| 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 recipe_engine.types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'bot_update', | 8 'bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_tests', | 10 'chromium_tests', |
| 11 'json', | 11 'json', |
| 12 'path', | 12 'path', |
| 13 'platform', | 13 'platform', |
| 14 'properties', | 14 'properties', |
| 15 'python', | 15 'python', |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 'gtest_tests': ['base_unittests'], | 362 'gtest_tests': ['base_unittests'], |
| 363 }})) + | 363 }})) + |
| 364 api.override_step_data( | 364 api.override_step_data( |
| 365 'analyze', | 365 'analyze', |
| 366 api.json.output({ | 366 api.json.output({ |
| 367 'status': 'Found dependency', | 367 'status': 'Found dependency', |
| 368 'targets': ['net_unittests'], | 368 'targets': ['net_unittests'], |
| 369 'build_targets': ['net_unittests'], | 369 'build_targets': ['net_unittests'], |
| 370 })) | 370 })) |
| 371 ) | 371 ) |
| OLD | NEW |