OLD | NEW |
---|---|
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 11 matching lines...) Expand all Loading... | |
22 import optparse | 22 import optparse |
23 import os | 23 import os |
24 import shelve | 24 import shelve |
25 import shutil | 25 import shutil |
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 'base/third_party/libevent', | |
kjellander_webrtc
2016/04/22 06:32:27
There's already a 'base' link for Android below. S
tommi
2016/04/22 07:10:21
Ah, thanks! Yeah, having a third_party directory
| |
32 'build', | 33 'build', |
33 'buildtools', | 34 'buildtools', |
34 'mojo', # TODO(kjellander): Remove, see webrtc:5629. | 35 'mojo', # TODO(kjellander): Remove, see webrtc:5629. |
35 'testing', | 36 'testing', |
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', |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
502 except LinkError as e: | 503 except LinkError as e: |
503 print >> sys.stderr, e.message | 504 print >> sys.stderr, e.message |
504 return 3 | 505 return 3 |
505 finally: | 506 finally: |
506 links_database.close() | 507 links_database.close() |
507 return 0 | 508 return 0 |
508 | 509 |
509 | 510 |
510 if __name__ == '__main__': | 511 if __name__ == '__main__': |
511 sys.exit(main()) | 512 sys.exit(main()) |
OLD | NEW |