| 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 import json | 4 import json |
| 5 | 5 |
| 6 from recipe_engine.types import freeze | 6 from infra.libs.infra_types import freeze |
| 7 | 7 |
| 8 DEPS = [ | 8 DEPS = [ |
| 9 'chromium', | 9 'chromium', |
| 10 'gclient', | 10 'gclient', |
| 11 'path', | 11 'path', |
| 12 'platform', | 12 'platform', |
| 13 'properties', | 13 'properties', |
| 14 'python', | 14 'python', |
| 15 ] | 15 ] |
| 16 | 16 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 api.test('basic_%s_%s_Mirror%s' % (plat, bits, use_mirror)) + | 133 api.test('basic_%s_%s_Mirror%s' % (plat, bits, use_mirror)) + |
| 134 api.properties.generic( | 134 api.properties.generic( |
| 135 TARGET_BITS=bits, | 135 TARGET_BITS=bits, |
| 136 USE_MIRROR=use_mirror, | 136 USE_MIRROR=use_mirror, |
| 137 perf_id='dartium-linux-release', | 137 perf_id='dartium-linux-release', |
| 138 deps='dartium.deps', | 138 deps='dartium.deps', |
| 139 revision='12345', | 139 revision='12345', |
| 140 reference_build_executable='src/chrome/tools/refbuild/chrome') + | 140 reference_build_executable='src/chrome/tools/refbuild/chrome') + |
| 141 api.platform(plat, bits) | 141 api.platform(plat, bits) |
| 142 ) | 142 ) |
| OLD | NEW |