| 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 . import steps | 5 from . import steps |
| 6 | 6 |
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 SPEC = { | 9 SPEC = { |
| 10 'builders': { | 10 'builders': { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 'cf_archive_name': 'asan', | 24 'cf_archive_name': 'asan', |
| 25 'compile_targets': [ | 25 'compile_targets': [ |
| 26 'chromium_builder_asan', | 26 'chromium_builder_asan', |
| 27 ], | 27 ], |
| 28 'testing': { | 28 'testing': { |
| 29 'platform': 'win', | 29 'platform': 'win', |
| 30 }, | 30 }, |
| 31 }, | 31 }, |
| 32 }, | 32 }, |
| 33 } | 33 } |
| OLD | NEW |