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

Side by Side Diff: setup_links.py

Issue 1355083002: Roll chromium_revision 310ea93..8cf53d6 (349094:351112) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Update to 8cf53d6 (#351112) Created 5 years, 2 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 | « chromium/.gclient ('k') | webrtc/build/common.gypi » ('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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'third_party/colorama', 42 'third_party/colorama',
43 'third_party/drmemory', 43 'third_party/drmemory',
44 'third_party/expat', 44 'third_party/expat',
45 'third_party/icu', 45 'third_party/icu',
46 'third_party/instrumented_libraries', 46 'third_party/instrumented_libraries',
47 'third_party/jsoncpp', 47 'third_party/jsoncpp',
48 'third_party/libjpeg', 48 'third_party/libjpeg',
49 'third_party/libjpeg_turbo', 49 'third_party/libjpeg_turbo',
50 'third_party/libsrtp', 50 'third_party/libsrtp',
51 'third_party/libudev', 51 'third_party/libudev',
52 'third_party/libvpx', 52 'third_party/libvpx_new',
53 'third_party/libyuv', 53 'third_party/libyuv',
54 'third_party/llvm-build', 54 'third_party/llvm-build',
55 'third_party/lss', 55 'third_party/lss',
56 'third_party/nss', 56 'third_party/nss',
57 'third_party/ocmock', 57 'third_party/ocmock',
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',
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 except LinkError as e: 507 except LinkError as e:
508 print >> sys.stderr, e.message 508 print >> sys.stderr, e.message
509 return 3 509 return 3
510 finally: 510 finally:
511 links_database.close() 511 links_database.close()
512 return 0 512 return 0
513 513
514 514
515 if __name__ == '__main__': 515 if __name__ == '__main__':
516 sys.exit(main()) 516 sys.exit(main())
OLDNEW
« no previous file with comments | « chromium/.gclient ('k') | webrtc/build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698