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