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

Side by Side Diff: android_webview/buildbot/deps_whitelist.py

Issue 173073002: Add usrsctplib to the whitelist. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: land Created 6 years, 10 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 | « no previous file | 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) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 """Logic to generate lists of DEPS used by various parts of 6 """Logic to generate lists of DEPS used by various parts of
7 the android_webview continuous integration (buildbot) infrastructure. 7 the android_webview continuous integration (buildbot) infrastructure.
8 8
9 Note: The root Chromium project (which is not explicitly listed here) 9 Note: The root Chromium project (which is not explicitly listed here)
10 has a couple of third_party libraries checked in directly into it. This means 10 has a couple of third_party libraries checked in directly into it. This means
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'third_party/libyuv', 49 'third_party/libyuv',
50 'third_party/mesa/src', 50 'third_party/mesa/src',
51 'third_party/openssl', 51 'third_party/openssl',
52 'third_party/opus/src', 52 'third_party/opus/src',
53 'third_party/ots', 53 'third_party/ots',
54 'third_party/sfntly/cpp/src', 54 'third_party/sfntly/cpp/src',
55 'third_party/skia/gyp', 55 'third_party/skia/gyp',
56 'third_party/skia/include', 56 'third_party/skia/include',
57 'third_party/skia/src', 57 'third_party/skia/src',
58 'third_party/smhasher/src', 58 'third_party/smhasher/src',
59 'third_party/usrsctp/usrsctplib',
59 'third_party/webrtc', 60 'third_party/webrtc',
60 'third_party/yasm/source/patched-yasm', 61 'third_party/yasm/source/patched-yasm',
61 'tools/grit', 62 'tools/grit',
62 'tools/gyp', 63 'tools/gyp',
63 'v8', 64 'v8',
64 ] 65 ]
65 66
66 # Dependencies required to build android_webview. 67 # Dependencies required to build android_webview.
67 self._compile_dependencies = (self._snapshot_into_android_dependencies + 68 self._compile_dependencies = (self._snapshot_into_android_dependencies +
68 self._compile_but_not_snapshot_dependencies) 69 self._compile_but_not_snapshot_dependencies)
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 with open(opts.output_json, 'w') as output_json_file: 198 with open(opts.output_json, 'w') as output_json_file:
198 json.dump(output_dict, output_json_file) 199 json.dump(output_dict, output_json_file)
199 else: 200 else:
200 print blacklist 201 print blacklist
201 202
202 return 0 203 return 0
203 204
204 205
205 if __name__ == '__main__': 206 if __name__ == '__main__':
206 sys.exit(main()) 207 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698