| OLD | NEW |
| 1 #!/bin/bash |
| 2 |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 3 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 4 | 6 |
| 5 # pylint: disable=unused-wildcard-import | 7 set -e |
| 6 # pylint: disable=wildcard-import | 8 set -x |
| 7 | 9 |
| 8 from devil.android.battery_utils import * | 10 for script in generate-*.py ; do |
| 11 python "$script" |
| 12 done |
| 13 |
| 14 # Cleanup temporary files. |
| 15 rm -rf *.pyc |
| 16 rm -rf out/ |
| OLD | NEW |