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

Side by Side Diff: setup_links.py

Issue 1893953002: setup_links.py: Remove third_party/libevent (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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 | « .gitignore ('k') | no next file » | 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'base', 86 'base',
87 'third_party/android_platform', 87 'third_party/android_platform',
88 'third_party/android_tools', 88 'third_party/android_tools',
89 'third_party/appurify-python', 89 'third_party/appurify-python',
90 'third_party/ashmem', 90 'third_party/ashmem',
91 'third_party/catapult', 91 'third_party/catapult',
92 'third_party/icu', 92 'third_party/icu',
93 'third_party/ijar', 93 'third_party/ijar',
94 'third_party/jsr-305', 94 'third_party/jsr-305',
95 'third_party/junit', 95 'third_party/junit',
96 'third_party/libevent',
97 'third_party/libxml', 96 'third_party/libxml',
98 'third_party/mockito', 97 'third_party/mockito',
99 'third_party/modp_b64', 98 'third_party/modp_b64',
100 'third_party/requests', 99 'third_party/requests',
101 'third_party/robolectric', 100 'third_party/robolectric',
102 'third_party/tcmalloc', 101 'third_party/tcmalloc',
103 'tools/android', 102 'tools/android',
104 'tools/grit', 103 'tools/grit',
105 'tools/telemetry', 104 'tools/telemetry',
106 ] 105 ]
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 except LinkError as e: 501 except LinkError as e:
503 print >> sys.stderr, e.message 502 print >> sys.stderr, e.message
504 return 3 503 return 3
505 finally: 504 finally:
506 links_database.close() 505 links_database.close()
507 return 0 506 return 0
508 507
509 508
510 if __name__ == '__main__': 509 if __name__ == '__main__':
511 sys.exit(main()) 510 sys.exit(main())
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698