Chromium Code Reviews| Index: tracing/bin/compare_samples |
| diff --git a/tracing/bin/update_gypi b/tracing/bin/compare_samples |
| similarity index 67% |
| copy from tracing/bin/update_gypi |
| copy to tracing/bin/compare_samples |
| index 2c66ae1a38fbf029fd06ff2421025b480fe878d1..257285dfe02a36da889228c8bbdb7cdd41f1fd61 100755 |
| --- a/tracing/bin/update_gypi |
| +++ b/tracing/bin/compare_samples |
| @@ -1,5 +1,5 @@ |
| #!/usr/bin/env python |
| -# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| +# Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| @@ -10,5 +10,5 @@ if __name__ == '__main__': |
| tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__), |
| '..')) |
| sys.path.append(tracing_path) |
| - from tracing_build import update_gypi |
| - sys.exit(update_gypi.Update()) |
| + from tracing.metrics import compare_samples |
|
eakuefner
2016/07/21 19:35:34
I'm a little confused as to why we have both this,
RobertoCN
2016/09/02 21:19:30
The consensus was that one would only deal with co
|
| + sys.exit(compare_samples.Main(sys.argv)) |