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

Side by Side Diff: setup_links.py

Issue 1586083003: setup_links.py fix so that FFmpeg compiles on windows (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Do not always build ffmpeg, revert the sync_chromium.py change which didn't matter Created 4 years, 11 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 | « .gitignore ('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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'tools/clang', 67 'tools/clang',
68 'tools/generate_library_loader', 68 'tools/generate_library_loader',
69 'tools/generate_stubs',
69 'tools/gn', 70 'tools/gn',
70 'tools/gyp', 71 'tools/gyp',
71 'tools/memory', 72 'tools/memory',
72 'tools/protoc_wrapper', 73 'tools/protoc_wrapper',
73 'tools/python', 74 'tools/python',
74 'tools/swarming_client', 75 'tools/swarming_client',
75 'tools/valgrind', 76 'tools/valgrind',
76 'tools/vim', 77 'tools/vim',
77 'tools/win', 78 'tools/win',
78 'tools/xdisplaycheck', 79 'tools/xdisplaycheck',
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 except LinkError as e: 510 except LinkError as e:
510 print >> sys.stderr, e.message 511 print >> sys.stderr, e.message
511 return 3 512 return 3
512 finally: 513 finally:
513 links_database.close() 514 links_database.close()
514 return 0 515 return 0
515 516
516 517
517 if __name__ == '__main__': 518 if __name__ == '__main__':
518 sys.exit(main()) 519 sys.exit(main())
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698