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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'tools/generate_library_loader', | 68 'tools/generate_library_loader', |
69 'tools/gn', | 69 'tools/gn', |
70 'tools/gyp', | 70 'tools/gyp', |
71 'tools/memory', | 71 'tools/memory', |
72 'tools/protoc_wrapper', | 72 'tools/protoc_wrapper', |
73 'tools/python', | 73 'tools/python', |
74 'tools/swarming_client', | 74 'tools/swarming_client', |
75 'tools/valgrind', | 75 'tools/valgrind', |
76 'tools/vim', | 76 'tools/vim', |
77 'tools/win', | 77 'tools/win', |
| 78 'tools/xdisplaycheck', |
78 ] | 79 ] |
79 | 80 |
80 from sync_chromium import get_target_os_list | 81 from sync_chromium import get_target_os_list |
81 target_os = get_target_os_list() | 82 target_os = get_target_os_list() |
82 if 'android' in target_os: | 83 if 'android' in target_os: |
83 DIRECTORIES += [ | 84 DIRECTORIES += [ |
84 'base', | 85 'base', |
85 'third_party/android_platform', | 86 'third_party/android_platform', |
86 'third_party/android_testrunner', | 87 'third_party/android_testrunner', |
87 'third_party/android_tools', | 88 'third_party/android_tools', |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 except LinkError as e: | 509 except LinkError as e: |
509 print >> sys.stderr, e.message | 510 print >> sys.stderr, e.message |
510 return 3 | 511 return 3 |
511 finally: | 512 finally: |
512 links_database.close() | 513 links_database.close() |
513 return 0 | 514 return 0 |
514 | 515 |
515 | 516 |
516 if __name__ == '__main__': | 517 if __name__ == '__main__': |
517 sys.exit(main()) | 518 sys.exit(main()) |
OLD | NEW |