Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: tools/ipc_fuzzer/scripts/cf_package_builder.py

Issue 1025483002: Restructure the ipc_fuzzer directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move more files around Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/ipc_fuzzer/replay/replay_process.cc ('k') | tools/ipc_fuzzer/scripts/ipc_fuzzer_gen.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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())
OLDNEW
« no previous file with comments | « tools/ipc_fuzzer/replay/replay_process.cc ('k') | tools/ipc_fuzzer/scripts/ipc_fuzzer_gen.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698