OLD | NEW |
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 Loading... |
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', | 56 'third_party/skia/gyp', |
| 57 'third_party/skia/include', |
| 58 'third_party/skia/src', |
57 'third_party/smhasher/src', | 59 'third_party/smhasher/src', |
58 'third_party/usrsctp/usrsctplib', | 60 'third_party/usrsctp/usrsctplib', |
59 'third_party/webrtc', | 61 'third_party/webrtc', |
60 'third_party/yasm/source/patched-yasm', | 62 'third_party/yasm/source/patched-yasm', |
61 'tools/grit', | 63 'tools/grit', |
62 'tools/gyp', | 64 'tools/gyp', |
63 'v8', | 65 'v8', |
64 ] | 66 ] |
65 | 67 |
66 # Dependencies required to build android_webview. | 68 # Dependencies required to build android_webview. |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 with open(opts.output_json, 'w') as output_json_file: | 199 with open(opts.output_json, 'w') as output_json_file: |
198 json.dump(output_dict, output_json_file) | 200 json.dump(output_dict, output_json_file) |
199 else: | 201 else: |
200 print blacklist | 202 print blacklist |
201 | 203 |
202 return 0 | 204 return 0 |
203 | 205 |
204 | 206 |
205 if __name__ == '__main__': | 207 if __name__ == '__main__': |
206 sys.exit(main()) | 208 sys.exit(main()) |
OLD | NEW |