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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'tools/vim', | 79 'tools/vim', |
80 'tools/win', | 80 'tools/win', |
81 'tools/xdisplaycheck', | 81 'tools/xdisplaycheck', |
82 ] | 82 ] |
83 | 83 |
84 from sync_chromium import get_target_os_list | 84 from sync_chromium import get_target_os_list |
85 target_os = get_target_os_list() | 85 target_os = get_target_os_list() |
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/android_platform', | 90 'third_party/android_platform', |
90 'third_party/android_tools', | 91 'third_party/android_tools', |
| 92 'third_party/apache_velocity', |
91 'third_party/appurify-python', | 93 'third_party/appurify-python', |
92 'third_party/ashmem', | 94 'third_party/ashmem', |
| 95 'third_party/bouncycastle', |
93 'third_party/catapult', | 96 'third_party/catapult', |
| 97 'third_party/guava', |
| 98 'third_party/hamcrest', |
94 'third_party/icu', | 99 'third_party/icu', |
| 100 'third_party/icu4j', |
95 'third_party/ijar', | 101 'third_party/ijar', |
| 102 'third_party/intellij', |
96 'third_party/jsr-305', | 103 'third_party/jsr-305', |
97 'third_party/junit', | 104 'third_party/junit', |
98 'third_party/libxml', | 105 'third_party/libxml', |
99 'third_party/mockito', | 106 'third_party/mockito', |
100 'third_party/modp_b64', | 107 'third_party/modp_b64', |
| 108 'third_party/ow2_asm', |
101 'third_party/requests', | 109 'third_party/requests', |
102 'third_party/robolectric', | 110 'third_party/robolectric', |
| 111 'third_party/sqlite4java', |
103 'third_party/tcmalloc', | 112 'third_party/tcmalloc', |
104 'tools/android', | 113 'tools/android', |
105 'tools/grit', | 114 'tools/grit', |
106 'tools/telemetry', | 115 'tools/telemetry', |
107 ] | 116 ] |
108 else: | 117 else: |
109 DIRECTORIES += [ | 118 DIRECTORIES += [ |
110 'base/third_party/libevent', | 119 'base/third_party/libevent', |
111 ] | 120 ] |
112 | 121 |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 except LinkError as e: | 517 except LinkError as e: |
509 print >> sys.stderr, e.message | 518 print >> sys.stderr, e.message |
510 return 3 | 519 return 3 |
511 finally: | 520 finally: |
512 links_database.close() | 521 links_database.close() |
513 return 0 | 522 return 0 |
514 | 523 |
515 | 524 |
516 if __name__ == '__main__': | 525 if __name__ == '__main__': |
517 sys.exit(main()) | 526 sys.exit(main()) |
OLD | NEW |