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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'tools/valgrind', | 73 'tools/valgrind', |
74 'tools/vim', | 74 'tools/vim', |
75 'tools/win', | 75 'tools/win', |
76 ] | 76 ] |
77 | 77 |
78 from sync_chromium import get_target_os_list | 78 from sync_chromium import get_target_os_list |
79 target_os = get_target_os_list() | 79 target_os = get_target_os_list() |
80 if 'android' in target_os: | 80 if 'android' in target_os: |
81 DIRECTORIES += [ | 81 DIRECTORIES += [ |
82 'base', | 82 'base', |
| 83 'third_party/android_platform', |
83 'third_party/android_testrunner', | 84 'third_party/android_testrunner', |
84 'third_party/android_tools', | 85 'third_party/android_tools', |
85 'third_party/appurify-python', | 86 'third_party/appurify-python', |
86 'third_party/ashmem', | 87 'third_party/ashmem', |
87 'third_party/jsr-305', | 88 'third_party/jsr-305', |
88 'third_party/junit', | 89 'third_party/junit', |
89 'third_party/libevent', | 90 'third_party/libevent', |
90 'third_party/libxml', | 91 'third_party/libxml', |
91 'third_party/mockito', | 92 'third_party/mockito', |
92 'third_party/modp_b64', | 93 'third_party/modp_b64', |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 except LinkError as e: | 504 except LinkError as e: |
504 print >> sys.stderr, e.message | 505 print >> sys.stderr, e.message |
505 return 3 | 506 return 3 |
506 finally: | 507 finally: |
507 links_database.close() | 508 links_database.close() |
508 return 0 | 509 return 0 |
509 | 510 |
510 | 511 |
511 if __name__ == '__main__': | 512 if __name__ == '__main__': |
512 sys.exit(main()) | 513 sys.exit(main()) |
OLD | NEW |