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 16 matching lines...) Expand all Loading... |
27 import shelve | 27 import shelve |
28 import shutil | 28 import shutil |
29 import subprocess | 29 import subprocess |
30 import sys | 30 import sys |
31 import textwrap | 31 import textwrap |
32 | 32 |
33 | 33 |
34 DIRECTORIES = [ | 34 DIRECTORIES = [ |
35 'build', | 35 'build', |
36 'buildtools', | 36 'buildtools', |
| 37 'mojo', # TODO(kjellander): Remove, see webrtc:5629. |
37 'testing', | 38 'testing', |
38 'third_party/binutils', | 39 'third_party/binutils', |
39 'third_party/boringssl', | 40 'third_party/boringssl', |
40 'third_party/colorama', | 41 'third_party/colorama', |
41 'third_party/drmemory', | 42 'third_party/drmemory', |
42 'third_party/expat', | 43 'third_party/expat', |
43 'third_party/ffmpeg', | 44 'third_party/ffmpeg', |
44 'third_party/instrumented_libraries', | 45 'third_party/instrumented_libraries', |
45 'third_party/jsoncpp', | 46 'third_party/jsoncpp', |
46 'third_party/libc++-static', | 47 'third_party/libc++-static', |
47 'third_party/libjpeg', | 48 'third_party/libjpeg', |
48 'third_party/libjpeg_turbo', | 49 'third_party/libjpeg_turbo', |
49 'third_party/libsrtp', | 50 'third_party/libsrtp', |
50 'third_party/libudev', | 51 'third_party/libudev', |
51 'third_party/libvpx_new', | 52 'third_party/libvpx', |
52 'third_party/libyuv', | 53 'third_party/libyuv', |
53 'third_party/llvm-build', | 54 'third_party/llvm-build', |
54 'third_party/lss', | 55 'third_party/lss', |
55 'third_party/nss', | 56 'third_party/nss', |
56 'third_party/ocmock', | 57 'third_party/ocmock', |
57 'third_party/openh264', | 58 'third_party/openh264', |
58 'third_party/openmax_dl', | 59 'third_party/openmax_dl', |
59 'third_party/opus', | 60 'third_party/opus', |
60 'third_party/proguard', | 61 'third_party/proguard', |
61 'third_party/protobuf', | 62 'third_party/protobuf', |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 except LinkError as e: | 513 except LinkError as e: |
513 print >> sys.stderr, e.message | 514 print >> sys.stderr, e.message |
514 return 3 | 515 return 3 |
515 finally: | 516 finally: |
516 links_database.close() | 517 links_database.close() |
517 return 0 | 518 return 0 |
518 | 519 |
519 | 520 |
520 if __name__ == '__main__': | 521 if __name__ == '__main__': |
521 sys.exit(main()) | 522 sys.exit(main()) |
OLD | NEW |