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

Side by Side Diff: setup_links.py

Issue 2524673002: DEPS: Specify WebRTC hooks and add a few dependencies (Closed)
Patch Set: Restored check_root_dir.py and added comments Created 4 years, 1 month 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 | « DEPS ('k') | sync_chromium.py » ('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 18 matching lines...) Expand all
29 29
30 30
31 DIRECTORIES = [ 31 DIRECTORIES = [
32 'build', 32 'build',
33 'buildtools', 33 'buildtools',
34 'mojo', # TODO(kjellander): Remove, see webrtc:5629. 34 'mojo', # TODO(kjellander): Remove, see webrtc:5629.
35 'testing', 35 'testing',
36 'third_party/afl', 36 'third_party/afl',
37 'third_party/binutils', 37 'third_party/binutils',
38 'third_party/boringssl', 38 'third_party/boringssl',
39 'third_party/catapult',
39 'third_party/closure_compiler', 40 'third_party/closure_compiler',
40 'third_party/colorama', 41 'third_party/colorama',
41 'third_party/expat', 42 'third_party/expat',
42 'third_party/ffmpeg', 43 'third_party/ffmpeg',
43 'third_party/instrumented_libraries', 44 'third_party/instrumented_libraries',
44 'third_party/jsoncpp', 45 'third_party/jsoncpp',
45 'third_party/libc++-static', 46 'third_party/libc++-static',
46 'third_party/libFuzzer', 47 'third_party/libFuzzer',
47 'third_party/libjpeg', 48 'third_party/libjpeg',
48 'third_party/libjpeg_turbo', 49 'third_party/libjpeg_turbo',
49 'third_party/libsrtp', 50 'third_party/libsrtp',
50 'third_party/libvpx', 51 'third_party/libvpx',
51 'third_party/libyuv', 52 'third_party/libyuv',
52 'third_party/llvm-build', 53 'third_party/llvm-build',
53 'third_party/lss', 54 'third_party/lss',
54 'third_party/nss', 55 'third_party/nss',
55 'third_party/ocmock', 56 'third_party/ocmock',
56 'third_party/openh264', 57 'third_party/openh264',
57 'third_party/openmax_dl', 58 'third_party/openmax_dl',
58 'third_party/opus', 59 'third_party/opus',
59 'third_party/proguard', 60 'third_party/proguard',
60 'third_party/protobuf', 61 'third_party/protobuf',
61 'third_party/sqlite', 62 'third_party/sqlite',
62 'third_party/syzygy', 63 'third_party/syzygy',
63 'third_party/usrsctp', 64 'third_party/usrsctp',
64 'third_party/yasm', 65 'third_party/yasm',
65 'third_party/zlib', 66 'third_party/zlib',
66 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629. 67 'third_party/WebKit', # TODO(kjellander): Remove, see webrtc:5629.
67 'tools/clang', 68 'tools/clang',
69 'tools/clang_format_merge_driver',
68 'tools/determinism', 70 'tools/determinism',
69 'tools/generate_library_loader', 71 'tools/generate_library_loader',
70 'tools/generate_stubs', 72 'tools/generate_stubs',
71 'tools/gn', 73 'tools/gn',
72 'tools/grit', 74 'tools/grit',
73 'tools/gyp', 75 'tools/gyp',
74 'tools/luci-go', 76 'tools/luci-go',
75 'tools/memory', 77 'tools/memory',
76 'tools/protoc_wrapper', 78 'tools/protoc_wrapper',
77 'tools/python', 79 'tools/python',
(...skipping 11 matching lines...) Expand all
89 'base', 91 'base',
90 'third_party/accessibility_test_framework', 92 'third_party/accessibility_test_framework',
91 'third_party/android_platform', 93 'third_party/android_platform',
92 'third_party/android_support_test_runner', 94 'third_party/android_support_test_runner',
93 'third_party/android_tools', 95 'third_party/android_tools',
94 'third_party/apache_velocity', 96 'third_party/apache_velocity',
95 'third_party/appurify-python', 97 'third_party/appurify-python',
96 'third_party/ashmem', 98 'third_party/ashmem',
97 'third_party/bouncycastle', 99 'third_party/bouncycastle',
98 'third_party/byte_buddy', 100 'third_party/byte_buddy',
99 'third_party/catapult',
100 'third_party/ced', 101 'third_party/ced',
102 'third_party/espresso',
101 'third_party/guava', 103 'third_party/guava',
102 'third_party/hamcrest', 104 'third_party/hamcrest',
103 'third_party/icu', 105 'third_party/icu',
104 'third_party/icu4j', 106 'third_party/icu4j',
105 'third_party/ijar', 107 'third_party/ijar',
106 'third_party/intellij', 108 'third_party/intellij',
109 'third_party/javax_inject',
107 'third_party/jsr-305', 110 'third_party/jsr-305',
108 'third_party/junit', 111 'third_party/junit',
109 'third_party/libxml', 112 'third_party/libxml',
110 'third_party/mockito', 113 'third_party/mockito',
111 'third_party/modp_b64', 114 'third_party/modp_b64',
112 'third_party/objenesis', 115 'third_party/objenesis',
113 'third_party/ow2_asm', 116 'third_party/ow2_asm',
114 'third_party/requests', 117 'third_party/requests',
115 'third_party/robolectric', 118 'third_party/robolectric',
116 'third_party/sqlite4java', 119 'third_party/sqlite4java',
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 except LinkError as e: 525 except LinkError as e:
523 print >> sys.stderr, e.message 526 print >> sys.stderr, e.message
524 return 3 527 return 3
525 finally: 528 finally:
526 links_database.close() 529 links_database.close()
527 return 0 530 return 0
528 531
529 532
530 if __name__ == '__main__': 533 if __name__ == '__main__':
531 sys.exit(main()) 534 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | sync_chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698