OLD | NEW |
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 'third_party/junit', | 105 'third_party/junit', |
106 'third_party/libxml', | 106 'third_party/libxml', |
107 'third_party/mockito', | 107 'third_party/mockito', |
108 'third_party/modp_b64', | 108 'third_party/modp_b64', |
109 'third_party/objenesis', | 109 'third_party/objenesis', |
110 'third_party/ow2_asm', | 110 'third_party/ow2_asm', |
111 'third_party/requests', | 111 'third_party/requests', |
112 'third_party/robolectric', | 112 'third_party/robolectric', |
113 'third_party/sqlite4java', | 113 'third_party/sqlite4java', |
114 'third_party/tcmalloc', | 114 'third_party/tcmalloc', |
| 115 'third_party/ub-uiautomator', |
115 'tools/android', | 116 'tools/android', |
116 'tools/telemetry', | 117 'tools/telemetry', |
117 ] | 118 ] |
118 else: | 119 else: |
119 DIRECTORIES += [ | 120 DIRECTORIES += [ |
120 'base/third_party/libevent', | 121 'base/third_party/libevent', |
121 ] | 122 ] |
122 | 123 |
123 if 'ios' in target_os: | 124 if 'ios' in target_os: |
124 DIRECTORIES.append('third_party/class-dump') | 125 DIRECTORIES.append('third_party/class-dump') |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 except LinkError as e: | 520 except LinkError as e: |
520 print >> sys.stderr, e.message | 521 print >> sys.stderr, e.message |
521 return 3 | 522 return 3 |
522 finally: | 523 finally: |
523 links_database.close() | 524 links_database.close() |
524 return 0 | 525 return 0 |
525 | 526 |
526 | 527 |
527 if __name__ == '__main__': | 528 if __name__ == '__main__': |
528 sys.exit(main()) | 529 sys.exit(main()) |
OLD | NEW |