| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 if 'android' in target_os: | 62 if 'android' in target_os: |
| 63 DIRECTORIES += [ | 63 DIRECTORIES += [ |
| 64 'base', | 64 'base', |
| 65 'third_party/accessibility_test_framework', | 65 'third_party/accessibility_test_framework', |
| 66 'third_party/android_platform', | 66 'third_party/android_platform', |
| 67 'third_party/android_tools', | 67 'third_party/android_tools', |
| 68 'third_party/apache_velocity', | 68 'third_party/apache_velocity', |
| 69 'third_party/appurify-python', | 69 'third_party/appurify-python', |
| 70 'third_party/ashmem', | 70 'third_party/ashmem', |
| 71 'third_party/bouncycastle', | 71 'third_party/bouncycastle', |
| 72 'third_party/byte_buddy', |
| 72 'third_party/catapult', | 73 'third_party/catapult', |
| 73 'third_party/ced', | 74 'third_party/ced', |
| 74 'third_party/closure_compiler', | 75 'third_party/closure_compiler', |
| 75 'third_party/guava', | 76 'third_party/guava', |
| 76 'third_party/hamcrest', | 77 'third_party/hamcrest', |
| 77 'third_party/icu', | 78 'third_party/icu', |
| 78 'third_party/icu4j', | 79 'third_party/icu4j', |
| 79 'third_party/ijar', | 80 'third_party/ijar', |
| 80 'third_party/intellij', | 81 'third_party/intellij', |
| 81 'third_party/jsr-305', | 82 'third_party/jsr-305', |
| 82 'third_party/junit', | 83 'third_party/junit', |
| 83 'third_party/libxml', | 84 'third_party/libxml', |
| 84 'third_party/mockito', | 85 'third_party/mockito', |
| 85 'third_party/modp_b64', | 86 'third_party/modp_b64', |
| 87 'third_party/objenesis', |
| 86 'third_party/ow2_asm', | 88 'third_party/ow2_asm', |
| 87 'third_party/protobuf', | 89 'third_party/protobuf', |
| 88 'third_party/requests', | 90 'third_party/requests', |
| 89 'third_party/robolectric', | 91 'third_party/robolectric', |
| 90 'third_party/sqlite4java', | 92 'third_party/sqlite4java', |
| 91 'third_party/zlib', | 93 'third_party/zlib', |
| 92 'tools/android', | 94 'tools/android', |
| 93 'tools/grit', | 95 'tools/grit', |
| 94 ] | 96 ] |
| 95 if 'ios' in target_os: | 97 if 'ios' in target_os: |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 except LinkError as e: | 492 except LinkError as e: |
| 491 print >> sys.stderr, e.message | 493 print >> sys.stderr, e.message |
| 492 return 3 | 494 return 3 |
| 493 finally: | 495 finally: |
| 494 links_database.close() | 496 links_database.close() |
| 495 return 0 | 497 return 0 |
| 496 | 498 |
| 497 | 499 |
| 498 if __name__ == '__main__': | 500 if __name__ == '__main__': |
| 499 sys.exit(main()) | 501 sys.exit(main()) |
| OLD | NEW |