Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: setup_links.py

Issue 2306163002: MB: Copy MB from Chromium repo (Closed)
Patch Set: updated-to-f1e2718a3ff89c80691a50f8ea2503cbb9aa97ee Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | tools/mb/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 73 'tools/gyp',
74 'tools/luci-go', 74 'tools/luci-go',
75 'tools/mb',
76 'tools/memory', 75 'tools/memory',
77 'tools/protoc_wrapper', 76 'tools/protoc_wrapper',
78 'tools/python', 77 'tools/python',
79 'tools/swarming_client', 78 'tools/swarming_client',
80 'tools/valgrind', 79 'tools/valgrind',
81 'tools/vim', 80 'tools/vim',
82 'tools/win', 81 'tools/win',
83 'tools/xdisplaycheck', 82 'tools/xdisplaycheck',
84 ] 83 ]
85 84
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
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())
OLDNEW
« no previous file with comments | « .gitignore ('k') | tools/mb/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698