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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 'third_party/syzygy', | 61 'third_party/syzygy', |
62 'third_party/usrsctp', | 62 'third_party/usrsctp', |
63 'third_party/yasm', | 63 'third_party/yasm', |
64 'third_party/zlib', | 64 'third_party/zlib', |
65 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. | 65 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. |
66 'tools/clang', | 66 'tools/clang', |
67 'tools/generate_library_loader', | 67 'tools/generate_library_loader', |
68 'tools/generate_stubs', | 68 'tools/generate_stubs', |
69 'tools/gn', | 69 'tools/gn', |
70 'tools/gyp', | 70 'tools/gyp', |
| 71 'tools/luci-go', |
71 'tools/mb', | 72 'tools/mb', |
72 'tools/memory', | 73 'tools/memory', |
73 'tools/protoc_wrapper', | 74 'tools/protoc_wrapper', |
74 'tools/python', | 75 'tools/python', |
75 'tools/swarming_client', | 76 'tools/swarming_client', |
76 'tools/valgrind', | 77 'tools/valgrind', |
77 'tools/vim', | 78 'tools/vim', |
78 'tools/win', | 79 'tools/win', |
79 'tools/xdisplaycheck', | 80 'tools/xdisplaycheck', |
80 ] | 81 ] |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 except LinkError as e: | 503 except LinkError as e: |
503 print >> sys.stderr, e.message | 504 print >> sys.stderr, e.message |
504 return 3 | 505 return 3 |
505 finally: | 506 finally: |
506 links_database.close() | 507 links_database.close() |
507 return 0 | 508 return 0 |
508 | 509 |
509 | 510 |
510 if __name__ == '__main__': | 511 if __name__ == '__main__': |
511 sys.exit(main()) | 512 sys.exit(main()) |
OLD | NEW |