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

Side by Side Diff: setup_links.py

Issue 1629373002: Roll chromium_revision 6a04368..717238e (370362:370438) + tcmalloc (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Actually do that only for android Created 4 years, 11 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
« no previous file with comments | « DEPS ('k') | no next file » | 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'third_party/icu', 92 'third_party/icu',
93 'third_party/ijar', 93 'third_party/ijar',
94 'third_party/jsr-305', 94 'third_party/jsr-305',
95 'third_party/junit', 95 'third_party/junit',
96 'third_party/libevent', 96 'third_party/libevent',
97 'third_party/libxml', 97 'third_party/libxml',
98 'third_party/mockito', 98 'third_party/mockito',
99 'third_party/modp_b64', 99 'third_party/modp_b64',
100 'third_party/requests', 100 'third_party/requests',
101 'third_party/robolectric', 101 'third_party/robolectric',
102 'third_party/tcmalloc',
102 'tools/android', 103 'tools/android',
103 'tools/grit', 104 'tools/grit',
104 'tools/telemetry', 105 'tools/telemetry',
105 ] 106 ]
106 if 'ios' in target_os: 107 if 'ios' in target_os:
107 DIRECTORIES.append('third_party/class-dump') 108 DIRECTORIES.append('third_party/class-dump')
108 109
109 FILES = { 110 FILES = {
110 'tools/isolate_driver.py': None, 111 'tools/isolate_driver.py': None,
111 'third_party/BUILD.gn': None, 112 'third_party/BUILD.gn': None,
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 except LinkError as e: 511 except LinkError as e:
511 print >> sys.stderr, e.message 512 print >> sys.stderr, e.message
512 return 3 513 return 3
513 finally: 514 finally:
514 links_database.close() 515 links_database.close()
515 return 0 516 return 0
516 517
517 518
518 if __name__ == '__main__': 519 if __name__ == '__main__':
519 sys.exit(main()) 520 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698