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

Side by Side Diff: setup_links.py

Issue 1417563006: Remove icu as a dependency (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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 | « .gitignore ('k') | no next file » | 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 22 matching lines...) Expand all
33 33
34 DIRECTORIES = [ 34 DIRECTORIES = [
35 'build', 35 'build',
36 'buildtools', 36 'buildtools',
37 'testing', 37 'testing',
38 'third_party/binutils', 38 'third_party/binutils',
39 'third_party/boringssl', 39 'third_party/boringssl',
40 'third_party/colorama', 40 'third_party/colorama',
41 'third_party/drmemory', 41 'third_party/drmemory',
42 'third_party/expat', 42 'third_party/expat',
43 'third_party/icu',
44 'third_party/instrumented_libraries', 43 'third_party/instrumented_libraries',
45 'third_party/jsoncpp', 44 'third_party/jsoncpp',
46 'third_party/libjpeg', 45 'third_party/libjpeg',
47 'third_party/libjpeg_turbo', 46 'third_party/libjpeg_turbo',
48 'third_party/libsrtp', 47 'third_party/libsrtp',
49 'third_party/libudev', 48 'third_party/libudev',
50 'third_party/libvpx_new', 49 'third_party/libvpx_new',
51 'third_party/libyuv', 50 'third_party/libyuv',
52 'third_party/llvm-build', 51 'third_party/llvm-build',
53 'third_party/lss', 52 'third_party/lss',
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 except LinkError as e: 503 except LinkError as e:
505 print >> sys.stderr, e.message 504 print >> sys.stderr, e.message
506 return 3 505 return 3
507 finally: 506 finally:
508 links_database.close() 507 links_database.close()
509 return 0 508 return 0
510 509
511 510
512 if __name__ == '__main__': 511 if __name__ == '__main__':
513 sys.exit(main()) 512 sys.exit(main())
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698