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

Side by Side Diff: setup_links.py

Issue 2268343002: Add missing dependencies to setup_links. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated .gitignore. 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 | « .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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 if 'android' in target_os: 86 if 'android' in target_os:
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/byte_buddy',
96 'third_party/catapult', 97 'third_party/catapult',
97 'third_party/ced', 98 'third_party/ced',
98 'third_party/closure_compiler', 99 'third_party/closure_compiler',
99 'third_party/guava', 100 'third_party/guava',
100 'third_party/hamcrest', 101 'third_party/hamcrest',
101 'third_party/icu', 102 'third_party/icu',
102 'third_party/icu4j', 103 'third_party/icu4j',
103 'third_party/ijar', 104 'third_party/ijar',
104 'third_party/intellij', 105 'third_party/intellij',
105 'third_party/jsr-305', 106 'third_party/jsr-305',
106 'third_party/junit', 107 'third_party/junit',
107 'third_party/libxml', 108 'third_party/libxml',
108 'third_party/mockito', 109 'third_party/mockito',
109 'third_party/modp_b64', 110 'third_party/modp_b64',
111 'third_party/objenesis',
110 'third_party/ow2_asm', 112 'third_party/ow2_asm',
111 'third_party/requests', 113 'third_party/requests',
112 'third_party/robolectric', 114 'third_party/robolectric',
113 'third_party/sqlite4java', 115 'third_party/sqlite4java',
114 'third_party/tcmalloc', 116 'third_party/tcmalloc',
115 'tools/android', 117 'tools/android',
116 'tools/grit', 118 'tools/grit',
117 'tools/telemetry', 119 'tools/telemetry',
118 ] 120 ]
119 else: 121 else:
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 except LinkError as e: 521 except LinkError as e:
520 print >> sys.stderr, e.message 522 print >> sys.stderr, e.message
521 return 3 523 return 3
522 finally: 524 finally:
523 links_database.close() 525 links_database.close()
524 return 0 526 return 0
525 527
526 528
527 if __name__ == '__main__': 529 if __name__ == '__main__':
528 sys.exit(main()) 530 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