OLD | NEW |
---|---|
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
109 'third_party/libxml', | 109 'third_party/libxml', |
110 'third_party/mockito', | 110 'third_party/mockito', |
111 'third_party/modp_b64', | 111 'third_party/modp_b64', |
112 'third_party/objenesis', | 112 'third_party/objenesis', |
113 'third_party/ow2_asm', | 113 'third_party/ow2_asm', |
114 'third_party/requests', | 114 'third_party/requests', |
115 'third_party/robolectric', | 115 'third_party/robolectric', |
116 'third_party/sqlite4java', | 116 'third_party/sqlite4java', |
117 'third_party/tcmalloc', | 117 'third_party/tcmalloc', |
118 'tools/android', | 118 'tools/android', |
119 'tools/determinism', | |
kjellander_webrtc
2016/09/22 11:32:05
Please add it for all platforms. The same step run
| |
119 'tools/telemetry', | 120 'tools/telemetry', |
120 ] | 121 ] |
121 else: | 122 else: |
122 DIRECTORIES += [ | 123 DIRECTORIES += [ |
123 'base/third_party/libevent', | 124 'base/third_party/libevent', |
124 ] | 125 ] |
125 | 126 |
126 if 'ios' in target_os: | 127 if 'ios' in target_os: |
127 DIRECTORIES.append('third_party/class-dump') | 128 DIRECTORIES.append('third_party/class-dump') |
128 | 129 |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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()) |
OLD | NEW |