| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/yasm', | 65 'third_party/yasm', |
| 66 'third_party/zlib', | 66 'third_party/zlib', |
| 67 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. | 67 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. |
| 68 'tools/clang', | 68 'tools/clang', |
| 69 'tools/determinism', |
| 69 'tools/generate_library_loader', | 70 'tools/generate_library_loader', |
| 70 'tools/generate_stubs', | 71 'tools/generate_stubs', |
| 71 'tools/gn', | 72 'tools/gn', |
| 72 'tools/grit', | 73 'tools/grit', |
| 73 'tools/gyp', | 74 'tools/gyp', |
| 74 'tools/luci-go', | 75 'tools/luci-go', |
| 75 'tools/mb', | 76 'tools/mb', |
| 76 'tools/memory', | 77 'tools/memory', |
| 77 'tools/protoc_wrapper', | 78 'tools/protoc_wrapper', |
| 78 'tools/python', | 79 'tools/python', |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 except LinkError as e: | 522 except LinkError as e: |
| 522 print >> sys.stderr, e.message | 523 print >> sys.stderr, e.message |
| 523 return 3 | 524 return 3 |
| 524 finally: | 525 finally: |
| 525 links_database.close() | 526 links_database.close() |
| 526 return 0 | 527 return 0 |
| 527 | 528 |
| 528 | 529 |
| 529 if __name__ == '__main__': | 530 if __name__ == '__main__': |
| 530 sys.exit(main()) | 531 sys.exit(main()) |
| OLD | NEW |