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

Side by Side Diff: setup_links.py

Issue 2201893007: Roll chromium_revision 0868029..33f8768 (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Updated documentation Created 4 years, 4 months 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 | « libyuv_test.gyp ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'tools/valgrind', 56 'tools/valgrind',
57 'tools/vim', 57 'tools/vim',
58 'tools/win', 58 'tools/win',
59 ] 59 ]
60 60
61 from sync_chromium import get_target_os_list 61 from sync_chromium import get_target_os_list
62 target_os = get_target_os_list() 62 target_os = get_target_os_list()
63 if 'android' in target_os: 63 if 'android' in target_os:
64 DIRECTORIES += [ 64 DIRECTORIES += [
65 'base', 65 'base',
66 'third_party/accessibility_test_framework',
66 'third_party/android_platform', 67 'third_party/android_platform',
67 'third_party/android_tools', 68 'third_party/android_tools',
69 'third_party/apache_velocity',
68 'third_party/appurify-python', 70 'third_party/appurify-python',
69 'third_party/ashmem', 71 'third_party/ashmem',
72 'third_party/bouncycastle',
70 'third_party/catapult', 73 'third_party/catapult',
74 'third_party/closure_compiler',
75 'third_party/guava',
76 'third_party/hamcrest',
71 'third_party/icu', 77 'third_party/icu',
78 'third_party/icu4j',
72 'third_party/ijar', 79 'third_party/ijar',
80 'third_party/intellij',
73 'third_party/jsr-305', 81 'third_party/jsr-305',
74 'third_party/junit', 82 'third_party/junit',
75 'third_party/libxml', 83 'third_party/libxml',
76 'third_party/mockito', 84 'third_party/mockito',
77 'third_party/modp_b64', 85 'third_party/modp_b64',
86 'third_party/ow2_asm',
78 'third_party/protobuf', 87 'third_party/protobuf',
79 'third_party/requests', 88 'third_party/requests',
80 'third_party/robolectric', 89 'third_party/robolectric',
90 'third_party/sqlite4java',
81 'tools/android', 91 'tools/android',
82 'tools/grit', 92 'tools/grit',
83 ] 93 ]
84 if 'ios' in target_os: 94 if 'ios' in target_os:
85 DIRECTORIES.append('third_party/class-dump') 95 DIRECTORIES.append('third_party/class-dump')
86 96
87 FILES = { 97 FILES = {
88 'tools/isolate_driver.py': None, 98 'tools/isolate_driver.py': None,
89 'third_party/BUILD.gn': None, 99 'third_party/BUILD.gn': None,
90 } 100 }
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 except LinkError as e: 498 except LinkError as e:
489 print >> sys.stderr, e.message 499 print >> sys.stderr, e.message
490 return 3 500 return 3
491 finally: 501 finally:
492 links_database.close() 502 links_database.close()
493 return 0 503 return 0
494 504
495 505
496 if __name__ == '__main__': 506 if __name__ == '__main__':
497 sys.exit(main()) 507 sys.exit(main())
OLDNEW
« no previous file with comments | « libyuv_test.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698