| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Creates IPC fuzzer packages suitable for uploading to ClusterFuzz. Stores | 6 """Creates IPC fuzzer packages suitable for uploading to ClusterFuzz. Stores |
| 7 the packages into chrome build directory. See fuzzer_list below for the list of | 7 the packages into chrome build directory. See fuzzer_list below for the list of |
| 8 fuzzers. | 8 fuzzers. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 self.switch_to_temp_work_directory() | 70 self.switch_to_temp_work_directory() |
| 71 for fuzzer in self.fuzzer_list: | 71 for fuzzer in self.fuzzer_list: |
| 72 self.build_package(fuzzer) | 72 self.build_package(fuzzer) |
| 73 self.remove_temp_work_directory() | 73 self.remove_temp_work_directory() |
| 74 | 74 |
| 75 return 0 | 75 return 0 |
| 76 | 76 |
| 77 if __name__ == "__main__": | 77 if __name__ == "__main__": |
| 78 builder = CFPackageBuilder() | 78 builder = CFPackageBuilder() |
| 79 sys.exit(builder.main()) | 79 sys.exit(builder.main()) |
| OLD | NEW |