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

Side by Side Diff: setup_links.py

Issue 2570993003: Remove unnecessary third_party links: nss, llvm-build, syzygy (Closed)
Patch Set: Created 4 years 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'third_party/ffmpeg', 42 'third_party/ffmpeg',
43 'third_party/instrumented_libraries', 43 'third_party/instrumented_libraries',
44 'third_party/jsoncpp', 44 'third_party/jsoncpp',
45 'third_party/libc++-static', 45 'third_party/libc++-static',
46 'third_party/libFuzzer', 46 'third_party/libFuzzer',
47 'third_party/libjpeg', 47 'third_party/libjpeg',
48 'third_party/libjpeg_turbo', 48 'third_party/libjpeg_turbo',
49 'third_party/libsrtp', 49 'third_party/libsrtp',
50 'third_party/libvpx', 50 'third_party/libvpx',
51 'third_party/libyuv', 51 'third_party/libyuv',
52 'third_party/llvm-build',
53 'third_party/lss', 52 'third_party/lss',
54 'third_party/nss',
55 'third_party/ocmock', 53 'third_party/ocmock',
56 'third_party/openh264', 54 'third_party/openh264',
57 'third_party/openmax_dl', 55 'third_party/openmax_dl',
58 'third_party/opus', 56 'third_party/opus',
59 'third_party/proguard', 57 'third_party/proguard',
60 'third_party/protobuf', 58 'third_party/protobuf',
61 'third_party/sqlite', 59 'third_party/sqlite',
62 'third_party/syzygy',
63 'third_party/usrsctp', 60 'third_party/usrsctp',
64 'third_party/yasm', 61 'third_party/yasm',
65 'third_party/zlib', 62 'third_party/zlib',
66 'tools/clang', 63 'tools/clang',
67 'tools/clang_format_merge_driver', 64 'tools/clang_format_merge_driver',
68 'tools/determinism', 65 'tools/determinism',
69 'tools/generate_library_loader', 66 'tools/generate_library_loader',
70 'tools/generate_stubs', 67 'tools/generate_stubs',
71 'tools/gn', 68 'tools/gn',
72 'tools/grit', 69 'tools/grit',
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 except LinkError as e: 519 except LinkError as e:
523 print >> sys.stderr, e.message 520 print >> sys.stderr, e.message
524 return 3 521 return 3
525 finally: 522 finally:
526 links_database.close() 523 links_database.close()
527 return 0 524 return 0
528 525
529 526
530 if __name__ == '__main__': 527 if __name__ == '__main__':
531 sys.exit(main()) 528 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