| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 DIRECTORIES += [ | 64 DIRECTORIES += [ |
| 65 'base', | 65 'base', |
| 66 'third_party/accessibility_test_framework', | 66 'third_party/accessibility_test_framework', |
| 67 'third_party/android_platform', | 67 'third_party/android_platform', |
| 68 'third_party/android_tools', | 68 'third_party/android_tools', |
| 69 'third_party/apache_velocity', | 69 'third_party/apache_velocity', |
| 70 'third_party/appurify-python', | 70 'third_party/appurify-python', |
| 71 'third_party/ashmem', | 71 'third_party/ashmem', |
| 72 'third_party/bouncycastle', | 72 'third_party/bouncycastle', |
| 73 'third_party/catapult', | 73 'third_party/catapult', |
| 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', |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 except LinkError as e: | 499 except LinkError as e: |
| 499 print >> sys.stderr, e.message | 500 print >> sys.stderr, e.message |
| 500 return 3 | 501 return 3 |
| 501 finally: | 502 finally: |
| 502 links_database.close() | 503 links_database.close() |
| 503 return 0 | 504 return 0 |
| 504 | 505 |
| 505 | 506 |
| 506 if __name__ == '__main__': | 507 if __name__ == '__main__': |
| 507 sys.exit(main()) | 508 sys.exit(main()) |
| OLD | NEW |