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

Side by Side Diff: setup_links.py

Issue 1415603005: Update isolate files for swarming tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: OS conditions were needed to avoid Android errors. Created 5 years, 2 months 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
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698