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

Side by Side Diff: setup_links.py

Issue 2447263003: Roll chromium_revision 9b5bb47fa0..04e7c673d9 (426837:427632) (Closed)
Patch Set: Fixes for iOS and Android Created 4 years, 1 month 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 | « build_overrides/build.gni ('k') | webrtc/test/ios/Info.plist » ('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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'tools/xdisplaycheck', 83 'tools/xdisplaycheck',
84 ] 84 ]
85 85
86 from sync_chromium import get_target_os_list 86 from sync_chromium import get_target_os_list
87 target_os = get_target_os_list() 87 target_os = get_target_os_list()
88 if 'android' in target_os: 88 if 'android' in target_os:
89 DIRECTORIES += [ 89 DIRECTORIES += [
90 'base', 90 'base',
91 'third_party/accessibility_test_framework', 91 'third_party/accessibility_test_framework',
92 'third_party/android_platform', 92 'third_party/android_platform',
93 'third_party/android_support_test_runner',
93 'third_party/android_tools', 94 'third_party/android_tools',
94 'third_party/apache_velocity', 95 'third_party/apache_velocity',
95 'third_party/appurify-python', 96 'third_party/appurify-python',
96 'third_party/ashmem', 97 'third_party/ashmem',
97 'third_party/bouncycastle', 98 'third_party/bouncycastle',
98 'third_party/byte_buddy', 99 'third_party/byte_buddy',
99 'third_party/catapult', 100 'third_party/catapult',
100 'third_party/ced', 101 'third_party/ced',
101 'third_party/guava', 102 'third_party/guava',
102 'third_party/hamcrest', 103 'third_party/hamcrest',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 except LinkError as e: 522 except LinkError as e:
522 print >> sys.stderr, e.message 523 print >> sys.stderr, e.message
523 return 3 524 return 3
524 finally: 525 finally:
525 links_database.close() 526 links_database.close()
526 return 0 527 return 0
527 528
528 529
529 if __name__ == '__main__': 530 if __name__ == '__main__':
530 sys.exit(main()) 531 sys.exit(main())
OLDNEW
« no previous file with comments | « build_overrides/build.gni ('k') | webrtc/test/ios/Info.plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698