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

Side by Side Diff: setup_links.py

Issue 1823623005: Roll chromium_revision ba603a0..029c2f4 (381748:382621) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Added third_party/WebKit symlink :-( Created 4 years, 9 months 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 | « DEPS ('k') | no next file » | 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'third_party/openh264', 57 'third_party/openh264',
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/yasm', 65 'third_party/yasm',
66 'third_party/zlib', 66 'third_party/zlib',
67 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629.
67 'tools/clang', 68 'tools/clang',
68 'tools/generate_library_loader', 69 'tools/generate_library_loader',
69 'tools/generate_stubs', 70 'tools/generate_stubs',
70 'tools/gn', 71 'tools/gn',
71 'tools/gyp', 72 'tools/gyp',
72 'tools/mb', 73 'tools/mb',
73 'tools/memory', 74 'tools/memory',
74 'tools/protoc_wrapper', 75 'tools/protoc_wrapper',
75 'tools/python', 76 'tools/python',
76 'tools/swarming_client', 77 'tools/swarming_client',
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 except LinkError as e: 513 except LinkError as e:
513 print >> sys.stderr, e.message 514 print >> sys.stderr, e.message
514 return 3 515 return 3
515 finally: 516 finally:
516 links_database.close() 517 links_database.close()
517 return 0 518 return 0
518 519
519 520
520 if __name__ == '__main__': 521 if __name__ == '__main__':
521 sys.exit(main()) 522 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698