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

Side by Side Diff: setup_links.py

Issue 2215633002: Roll chromium_revision 48e079d573..33f87688e4 (407510:409700) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 DIRECTORIES += [ 87 DIRECTORIES += [
88 'base', 88 'base',
89 'third_party/accessibility_test_framework', 89 'third_party/accessibility_test_framework',
90 'third_party/android_platform', 90 'third_party/android_platform',
91 'third_party/android_tools', 91 'third_party/android_tools',
92 'third_party/apache_velocity', 92 'third_party/apache_velocity',
93 'third_party/appurify-python', 93 'third_party/appurify-python',
94 'third_party/ashmem', 94 'third_party/ashmem',
95 'third_party/bouncycastle', 95 'third_party/bouncycastle',
96 'third_party/catapult', 96 'third_party/catapult',
97 'third_party/closure_compiler',
97 'third_party/guava', 98 'third_party/guava',
98 'third_party/hamcrest', 99 'third_party/hamcrest',
99 'third_party/icu', 100 'third_party/icu',
100 'third_party/icu4j', 101 'third_party/icu4j',
101 'third_party/ijar', 102 'third_party/ijar',
102 'third_party/intellij', 103 'third_party/intellij',
103 'third_party/jsr-305', 104 'third_party/jsr-305',
104 'third_party/junit', 105 'third_party/junit',
105 'third_party/libxml', 106 'third_party/libxml',
106 'third_party/mockito', 107 'third_party/mockito',
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 except LinkError as e: 518 except LinkError as e:
518 print >> sys.stderr, e.message 519 print >> sys.stderr, e.message
519 return 3 520 return 3
520 finally: 521 finally:
521 links_database.close() 522 links_database.close()
522 return 0 523 return 0
523 524
524 525
525 if __name__ == '__main__': 526 if __name__ == '__main__':
526 sys.exit(main()) 527 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