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

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

Issue 296903004: Attempt #4: Change Skia DEPS to pull from googlesource (git) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebase Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | third_party/skia/LICENSE » ('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) 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'third_party/libphonenumber/src/resources', 46 'third_party/libphonenumber/src/resources',
47 'third_party/libsrtp', 47 'third_party/libsrtp',
48 'third_party/libvpx', 48 'third_party/libvpx',
49 'third_party/libyuv', 49 'third_party/libyuv',
50 'third_party/mesa/src', 50 'third_party/mesa/src',
51 'third_party/openmax_dl', 51 'third_party/openmax_dl',
52 'third_party/openssl', 52 'third_party/openssl',
53 'third_party/opus/src', 53 'third_party/opus/src',
54 'third_party/ots', 54 'third_party/ots',
55 'third_party/sfntly/cpp/src', 55 'third_party/sfntly/cpp/src',
56 'third_party/skia/gyp', 56 'third_party/skia',
57 'third_party/skia/include',
58 'third_party/skia/src',
59 'third_party/smhasher/src', 57 'third_party/smhasher/src',
60 'third_party/usrsctp/usrsctplib', 58 'third_party/usrsctp/usrsctplib',
61 'third_party/webrtc', 59 'third_party/webrtc',
62 'third_party/yasm/source/patched-yasm', 60 'third_party/yasm/source/patched-yasm',
63 'tools/grit', 61 'tools/grit',
64 'tools/gyp', 62 'tools/gyp',
65 'v8', 63 'v8',
66 ] 64 ]
67 65
68 # Dependencies required to build android_webview. 66 # Dependencies required to build android_webview.
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 with open(opts.output_json, 'w') as output_json_file: 197 with open(opts.output_json, 'w') as output_json_file:
200 json.dump(output_dict, output_json_file) 198 json.dump(output_dict, output_json_file)
201 else: 199 else:
202 print blacklist 200 print blacklist
203 201
204 return 0 202 return 0
205 203
206 204
207 if __name__ == '__main__': 205 if __name__ == '__main__':
208 sys.exit(main()) 206 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | third_party/skia/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698