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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'third_party/lss', | 55 'third_party/lss', |
56 'third_party/nss', | 56 'third_party/nss', |
57 'third_party/ocmock', | 57 'third_party/ocmock', |
58 'third_party/openmax_dl', | 58 'third_party/openmax_dl', |
59 'third_party/opus', | 59 'third_party/opus', |
60 'third_party/proguard', | 60 'third_party/proguard', |
61 'third_party/protobuf', | 61 'third_party/protobuf', |
62 'third_party/sqlite', | 62 'third_party/sqlite', |
63 'third_party/syzygy', | 63 'third_party/syzygy', |
64 'third_party/usrsctp', | 64 'third_party/usrsctp', |
65 'third_party/WebKit', | |
66 'third_party/yasm', | 65 'third_party/yasm', |
67 'third_party/zlib', | 66 'third_party/zlib', |
68 'tools/clang', | 67 'tools/clang', |
69 'tools/generate_library_loader', | 68 'tools/generate_library_loader', |
70 'tools/gn', | 69 'tools/gn', |
71 'tools/gyp', | 70 'tools/gyp', |
72 'tools/memory', | 71 'tools/memory', |
73 'tools/protoc_wrapper', | 72 'tools/protoc_wrapper', |
74 'tools/python', | 73 'tools/python', |
75 'tools/swarming_client', | 74 'tools/swarming_client', |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 except LinkError as e: | 507 except LinkError as e: |
509 print >> sys.stderr, e.message | 508 print >> sys.stderr, e.message |
510 return 3 | 509 return 3 |
511 finally: | 510 finally: |
512 links_database.close() | 511 links_database.close() |
513 return 0 | 512 return 0 |
514 | 513 |
515 | 514 |
516 if __name__ == '__main__': | 515 if __name__ == '__main__': |
517 sys.exit(main()) | 516 sys.exit(main()) |
OLD | NEW |