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

Side by Side Diff: setup_links.py

Issue 1909223004: Add links for base/third_party/libevent from Chrome. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: One more try Created 4 years, 8 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 | « no previous file | webrtc/base/DEPS » ('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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'third_party/tcmalloc',
103 'tools/android', 103 'tools/android',
104 'tools/grit', 104 'tools/grit',
105 'tools/telemetry', 105 'tools/telemetry',
106 ] 106 ]
107 else:
108 DIRECTORIES += [
109 'base/third_party/libevent',
kjellander_webrtc 2016/04/22 07:54:40 This should work.
110 ]
111
107 if 'ios' in target_os: 112 if 'ios' in target_os:
108 DIRECTORIES.append('third_party/class-dump') 113 DIRECTORIES.append('third_party/class-dump')
109 114
110 FILES = { 115 FILES = {
111 'tools/isolate_driver.py': None, 116 'tools/isolate_driver.py': None,
112 'third_party/BUILD.gn': None, 117 'third_party/BUILD.gn': None,
113 } 118 }
114 119
115 ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) 120 ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
116 CHROMIUM_CHECKOUT = os.path.join('chromium', 'src') 121 CHROMIUM_CHECKOUT = os.path.join('chromium', 'src')
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 except LinkError as e: 507 except LinkError as e:
503 print >> sys.stderr, e.message 508 print >> sys.stderr, e.message
504 return 3 509 return 3
505 finally: 510 finally:
506 links_database.close() 511 links_database.close()
507 return 0 512 return 0
508 513
509 514
510 if __name__ == '__main__': 515 if __name__ == '__main__':
511 sys.exit(main()) 516 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698