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

Side by Side Diff: setup_links.py

Issue 2143053002: [AFL] Allow webrtc fuzzers to be used with afl-fuzz. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | webrtc/BUILD.gn » ('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 (c) 2014 The WebRTC project authors. All Rights Reserved. 2 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license 4 # Use of this source code is governed by a BSD-style license
5 # that can be found in the LICENSE file in the root of the source 5 # that can be found in the LICENSE file in the root of the source
6 # tree. An additional intellectual property rights grant can be found 6 # tree. An additional intellectual property rights grant can be found
7 # in the file PATENTS. All contributing project authors may 7 # in the file PATENTS. All contributing project authors may
8 # be found in the AUTHORS file in the root of the source tree. 8 # be found in the AUTHORS file in the root of the source tree.
9 9
10 """Setup links to a Chromium checkout for WebRTC. 10 """Setup links to a Chromium checkout for WebRTC.
(...skipping 15 matching lines...) Expand all
26 import subprocess 26 import subprocess
27 import sys 27 import sys
28 import textwrap 28 import textwrap
29 29
30 30
31 DIRECTORIES = [ 31 DIRECTORIES = [
32 'build', 32 'build',
33 'buildtools', 33 'buildtools',
34 'mojo', # TODO(kjellander): Remove, see webrtc:5629. 34 'mojo', # TODO(kjellander): Remove, see webrtc:5629.
35 'testing', 35 'testing',
36 'third_party/afl',
36 'third_party/binutils', 37 'third_party/binutils',
37 'third_party/boringssl', 38 'third_party/boringssl',
38 'third_party/colorama', 39 'third_party/colorama',
39 'third_party/drmemory', 40 'third_party/drmemory',
40 'third_party/expat', 41 'third_party/expat',
41 'third_party/ffmpeg', 42 'third_party/ffmpeg',
42 'third_party/instrumented_libraries', 43 'third_party/instrumented_libraries',
43 'third_party/jsoncpp', 44 'third_party/jsoncpp',
44 'third_party/libc++-static', 45 'third_party/libc++-static',
45 'third_party/libFuzzer', 46 'third_party/libFuzzer',
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 except LinkError as e: 508 except LinkError as e:
508 print >> sys.stderr, e.message 509 print >> sys.stderr, e.message
509 return 3 510 return 3
510 finally: 511 finally:
511 links_database.close() 512 links_database.close()
512 return 0 513 return 0
513 514
514 515
515 if __name__ == '__main__': 516 if __name__ == '__main__':
516 sys.exit(main()) 517 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | webrtc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698