OLD | NEW |
---|---|
1 | |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. | |
5 --> | |
sullivan
2015/12/11 20:13:24
Why is this being removed?
qyearsley
2015/12/14 18:29:18
I thought it wasn't necessary (since catapult/dash
| |
6 Bisect on catapult | 1 Bisect on catapult |
7 ================= | 2 ================= |
8 | 3 |
9 The purpose of this library is to house the logic used by the [bisect | 4 The purpose of this library is to house the logic used by the [bisect |
10 recipe](https://code.google.com/p/chromium/codesearch#chromium/build/scripts/sla ve/recipes/bisect.py) | 5 recipe](https://code.google.com/p/chromium/codesearch#chromium/build/scripts/sla ve/recipes/bisect.py) |
11 to improve its stability, testability and mathematical soundness beyond what the | 6 to improve its stability, testability and mathematical soundness beyond what the |
12 recipes subsystem currently allows. | 7 recipes subsystem currently allows. |
13 | 8 |
14 Secondary goals are: | 9 Secondary goals are: |
15 | 10 |
16 * Simplify code sharing with the related [Telemetry](https://www.chromium.org/d evelopers/telemetry) and [Performance Dashboard](https://github.com/catapult-pro ject/catapult/blob/master/dashboard/README.md) projects, also under catapult. | 11 * Simplify code sharing with the related Telemetry and [Performance Dashboard]( /dashboard/README.md) projects. |
sullivan
2015/12/11 20:13:24
I think we still want code sharing with telemetry?
qyearsley
2015/12/14 18:29:18
Yep; I just shortened the end of the sentence a bi
| |
17 * Eventually move the bisect director role outside of buildbot/recipes and | 12 * Eventually move the bisect director role outside of buildbot/recipes and |
18 into its own standalone application. | 13 into its own standalone application. |
19 | |
20 These tools were created by Chromium developers for performance analysis, | |
21 testing, and monitoring of Chrome, but they can also be used for analyzing and | |
22 monitoring websites, and eventually Android apps. | |
23 | |
24 Contributing | |
25 ============ | |
26 Please see [our contributor's guide](https://github.com/catapult-project/catapul t/blob/master/CONTRIBUTING.md) | |
27 | |
OLD | NEW |