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 13 matching lines...) Expand all Loading... |
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 'build', | 32 'build', |
33 'buildtools', | 33 'buildtools', |
34 'mojo', # TODO(kjellander): Remove, see webrtc:5629. | |
35 'testing', | 34 'testing', |
36 'third_party/afl', | 35 'third_party/afl', |
37 'third_party/binutils', | 36 'third_party/binutils', |
38 'third_party/boringssl', | 37 'third_party/boringssl', |
39 'third_party/catapult', | 38 'third_party/catapult', |
40 'third_party/closure_compiler', | 39 'third_party/closure_compiler', |
41 'third_party/colorama', | 40 'third_party/colorama', |
42 'third_party/expat', | 41 'third_party/expat', |
43 'third_party/ffmpeg', | 42 'third_party/ffmpeg', |
44 'third_party/instrumented_libraries', | 43 'third_party/instrumented_libraries', |
(...skipping 12 matching lines...) Expand all Loading... |
57 'third_party/openh264', | 56 'third_party/openh264', |
58 'third_party/openmax_dl', | 57 'third_party/openmax_dl', |
59 'third_party/opus', | 58 'third_party/opus', |
60 'third_party/proguard', | 59 'third_party/proguard', |
61 'third_party/protobuf', | 60 'third_party/protobuf', |
62 'third_party/sqlite', | 61 'third_party/sqlite', |
63 'third_party/syzygy', | 62 'third_party/syzygy', |
64 'third_party/usrsctp', | 63 'third_party/usrsctp', |
65 'third_party/yasm', | 64 'third_party/yasm', |
66 'third_party/zlib', | 65 'third_party/zlib', |
67 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. | |
68 'tools/clang', | 66 'tools/clang', |
69 'tools/clang_format_merge_driver', | 67 'tools/clang_format_merge_driver', |
70 'tools/determinism', | 68 'tools/determinism', |
71 'tools/generate_library_loader', | 69 'tools/generate_library_loader', |
72 'tools/generate_stubs', | 70 'tools/generate_stubs', |
73 'tools/gn', | 71 'tools/gn', |
74 'tools/grit', | 72 'tools/grit', |
75 'tools/gyp', | 73 'tools/gyp', |
76 'tools/luci-go', | 74 'tools/luci-go', |
77 'tools/memory', | 75 'tools/memory', |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 except LinkError as e: | 522 except LinkError as e: |
525 print >> sys.stderr, e.message | 523 print >> sys.stderr, e.message |
526 return 3 | 524 return 3 |
527 finally: | 525 finally: |
528 links_database.close() | 526 links_database.close() |
529 return 0 | 527 return 0 |
530 | 528 |
531 | 529 |
532 if __name__ == '__main__': | 530 if __name__ == '__main__': |
533 sys.exit(main()) | 531 sys.exit(main()) |
OLD | NEW |