| 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 27 matching lines...) Expand all Loading... |
| 38 'native_client', | 38 'native_client', |
| 39 'net', | 39 'net', |
| 40 'testing', | 40 'testing', |
| 41 'third_party/binutils', | 41 'third_party/binutils', |
| 42 'third_party/drmemory', | 42 'third_party/drmemory', |
| 43 'third_party/instrumented_libraries', | 43 'third_party/instrumented_libraries', |
| 44 'third_party/libjpeg', | 44 'third_party/libjpeg', |
| 45 'third_party/libjpeg_turbo', | 45 'third_party/libjpeg_turbo', |
| 46 'third_party/llvm-build', | 46 'third_party/llvm-build', |
| 47 'third_party/lss', | 47 'third_party/lss', |
| 48 'third_party/proguard', |
| 49 'third_party/tcmalloc', |
| 48 'third_party/yasm', | 50 'third_party/yasm', |
| 49 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. | 51 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. |
| 50 'tools/clang', | 52 'tools/clang', |
| 51 'tools/gn', | 53 'tools/gn', |
| 52 'tools/gyp', | 54 'tools/gyp', |
| 53 'tools/memory', | 55 'tools/memory', |
| 54 'tools/python', | 56 'tools/python', |
| 55 'tools/swarming_client', | 57 'tools/swarming_client', |
| 56 'tools/valgrind', | 58 'tools/valgrind', |
| 57 'tools/vim', | 59 'tools/vim', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 82 'third_party/jsr-305', | 84 'third_party/jsr-305', |
| 83 'third_party/junit', | 85 'third_party/junit', |
| 84 'third_party/libxml', | 86 'third_party/libxml', |
| 85 'third_party/mockito', | 87 'third_party/mockito', |
| 86 'third_party/modp_b64', | 88 'third_party/modp_b64', |
| 87 'third_party/ow2_asm', | 89 'third_party/ow2_asm', |
| 88 'third_party/protobuf', | 90 'third_party/protobuf', |
| 89 'third_party/requests', | 91 'third_party/requests', |
| 90 'third_party/robolectric', | 92 'third_party/robolectric', |
| 91 'third_party/sqlite4java', | 93 'third_party/sqlite4java', |
| 94 'third_party/zlib', |
| 92 'tools/android', | 95 'tools/android', |
| 93 'tools/grit', | 96 'tools/grit', |
| 94 ] | 97 ] |
| 95 if 'ios' in target_os: | 98 if 'ios' in target_os: |
| 96 DIRECTORIES.append('third_party/class-dump') | 99 DIRECTORIES.append('third_party/class-dump') |
| 97 | 100 |
| 98 FILES = { | 101 FILES = { |
| 99 'tools/isolate_driver.py': None, | 102 'tools/isolate_driver.py': None, |
| 100 'third_party/BUILD.gn': None, | 103 'third_party/BUILD.gn': None, |
| 101 } | 104 } |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 except LinkError as e: | 502 except LinkError as e: |
| 500 print >> sys.stderr, e.message | 503 print >> sys.stderr, e.message |
| 501 return 3 | 504 return 3 |
| 502 finally: | 505 finally: |
| 503 links_database.close() | 506 links_database.close() |
| 504 return 0 | 507 return 0 |
| 505 | 508 |
| 506 | 509 |
| 507 if __name__ == '__main__': | 510 if __name__ == '__main__': |
| 508 sys.exit(main()) | 511 sys.exit(main()) |
| OLD | NEW |