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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'third_party/icu', | 45 'third_party/icu', |
46 'third_party/instrumented_libraries', | 46 'third_party/instrumented_libraries', |
47 'third_party/jsoncpp', | 47 'third_party/jsoncpp', |
48 'third_party/libjpeg', | 48 'third_party/libjpeg', |
49 'third_party/libjpeg_turbo', | 49 'third_party/libjpeg_turbo', |
50 'third_party/libsrtp', | 50 'third_party/libsrtp', |
51 'third_party/libudev', | 51 'third_party/libudev', |
52 'third_party/libvpx', | 52 'third_party/libvpx', |
53 'third_party/libyuv', | 53 'third_party/libyuv', |
54 'third_party/llvm-build', | 54 'third_party/llvm-build', |
| 55 'third_party/lss', |
55 'third_party/nss', | 56 'third_party/nss', |
56 'third_party/ocmock', | 57 'third_party/ocmock', |
57 'third_party/openmax_dl', | 58 'third_party/openmax_dl', |
58 'third_party/opus', | 59 'third_party/opus', |
| 60 'third_party/proguard', |
59 'third_party/protobuf', | 61 'third_party/protobuf', |
60 'third_party/sqlite', | 62 'third_party/sqlite', |
61 'third_party/syzygy', | 63 'third_party/syzygy', |
62 'third_party/usrsctp', | 64 'third_party/usrsctp', |
63 'third_party/yasm', | 65 'third_party/yasm', |
64 'third_party/zlib', | 66 'third_party/zlib', |
65 'tools/clang', | 67 'tools/clang', |
66 'tools/generate_library_loader', | 68 'tools/generate_library_loader', |
67 'tools/gn', | 69 'tools/gn', |
68 'tools/gyp', | 70 'tools/gyp', |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 except LinkError as e: | 506 except LinkError as e: |
505 print >> sys.stderr, e.message | 507 print >> sys.stderr, e.message |
506 return 3 | 508 return 3 |
507 finally: | 509 finally: |
508 links_database.close() | 510 links_database.close() |
509 return 0 | 511 return 0 |
510 | 512 |
511 | 513 |
512 if __name__ == '__main__': | 514 if __name__ == '__main__': |
513 sys.exit(main()) | 515 sys.exit(main()) |
OLD | NEW |