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

Side by Side Diff: setup_links.py

Issue 2548763002: Remove xdisplaycheck (Closed)
Patch Set: Created 4 years 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 | « no previous file | tools/mb/mb.py » ('j') | 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'tools/grit', 74 'tools/grit',
75 'tools/gyp', 75 'tools/gyp',
76 'tools/luci-go', 76 'tools/luci-go',
77 'tools/memory', 77 'tools/memory',
78 'tools/protoc_wrapper', 78 'tools/protoc_wrapper',
79 'tools/python', 79 'tools/python',
80 'tools/swarming_client', 80 'tools/swarming_client',
81 'tools/valgrind', 81 'tools/valgrind',
82 'tools/vim', 82 'tools/vim',
83 'tools/win', 83 'tools/win',
84 'tools/xdisplaycheck',
85 ] 84 ]
86 85
87 from sync_chromium import get_target_os_list 86 from sync_chromium import get_target_os_list
88 target_os = get_target_os_list() 87 target_os = get_target_os_list()
89 if 'android' in target_os: 88 if 'android' in target_os:
90 DIRECTORIES += [ 89 DIRECTORIES += [
91 'base', 90 'base',
92 'third_party/accessibility_test_framework', 91 'third_party/accessibility_test_framework',
93 'third_party/android_platform', 92 'third_party/android_platform',
94 'third_party/android_support_test_runner', 93 'third_party/android_support_test_runner',
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 except LinkError as e: 524 except LinkError as e:
526 print >> sys.stderr, e.message 525 print >> sys.stderr, e.message
527 return 3 526 return 3
528 finally: 527 finally:
529 links_database.close() 528 links_database.close()
530 return 0 529 return 0
531 530
532 531
533 if __name__ == '__main__': 532 if __name__ == '__main__':
534 sys.exit(main()) 533 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | tools/mb/mb.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698