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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 | 25 |
26 class DepsWhitelist(object): | 26 class DepsWhitelist(object): |
27 def __init__(self): | 27 def __init__(self): |
28 # If a new DEPS entry is needed for the AOSP bot to compile please add it | 28 # If a new DEPS entry is needed for the AOSP bot to compile please add it |
29 # here first. | 29 # here first. |
30 # This is a staging area for deps that are accepted by the android_webview | 30 # This is a staging area for deps that are accepted by the android_webview |
31 # team and are in the process of having the required branches being created | 31 # team and are in the process of having the required branches being created |
32 # in the Android tree. | 32 # in the Android tree. |
33 self._compile_but_not_snapshot_dependencies = [ | 33 self._compile_but_not_snapshot_dependencies = [ |
34 'third_party/libaddressinput/src', | |
35 'third_party/boringssl/src', | |
36 ] | 34 ] |
37 | 35 |
38 # Dependencies that need to be merged into the Android tree. | 36 # Dependencies that need to be merged into the Android tree. |
39 self._snapshot_into_android_dependencies = [ | 37 self._snapshot_into_android_dependencies = [ |
40 'sdch/open-vcdiff', | 38 'sdch/open-vcdiff', |
41 'testing/gtest', | 39 'testing/gtest', |
42 'third_party/WebKit', | 40 'third_party/WebKit', |
43 'third_party/angle', | 41 'third_party/angle', |
| 42 'third_party/boringssl/src', |
44 'third_party/brotli/src', | 43 'third_party/brotli/src', |
45 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' | 44 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' |
46 'braille'), | 45 'braille'), |
47 'third_party/freetype', | 46 'third_party/freetype', |
48 'third_party/icu', | 47 'third_party/icu', |
49 'third_party/leveldatabase/src', | 48 'third_party/leveldatabase/src', |
| 49 'third_party/libaddressinput/src', |
50 'third_party/libjingle/source/talk', | 50 'third_party/libjingle/source/talk', |
51 'third_party/libphonenumber/src/phonenumbers', | 51 'third_party/libphonenumber/src/phonenumbers', |
52 'third_party/libphonenumber/src/resources', | 52 'third_party/libphonenumber/src/resources', |
53 'third_party/libsrtp', | 53 'third_party/libsrtp', |
54 'third_party/libvpx', | 54 'third_party/libvpx', |
55 'third_party/libyuv', | 55 'third_party/libyuv', |
56 'third_party/mesa/src', | 56 'third_party/mesa/src', |
57 'third_party/openmax_dl', | 57 'third_party/openmax_dl', |
58 'third_party/openssl', | |
59 'third_party/opus/src', | 58 'third_party/opus/src', |
60 'third_party/ots', | 59 'third_party/ots', |
61 'third_party/sfntly/cpp/src', | 60 'third_party/sfntly/cpp/src', |
62 'third_party/skia', | 61 'third_party/skia', |
63 'third_party/smhasher/src', | 62 'third_party/smhasher/src', |
64 'third_party/usrsctp/usrsctplib', | 63 'third_party/usrsctp/usrsctplib', |
65 'third_party/webrtc', | 64 'third_party/webrtc', |
66 'third_party/yasm/source/patched-yasm', | 65 'third_party/yasm/source/patched-yasm', |
67 'tools/grit', | 66 'tools/grit', |
68 'tools/gyp', | 67 'tools/gyp', |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 with open(opts.output_json, 'w') as output_json_file: | 240 with open(opts.output_json, 'w') as output_json_file: |
242 json.dump(output_dict, output_json_file) | 241 json.dump(output_dict, output_json_file) |
243 else: | 242 else: |
244 print blacklist | 243 print blacklist |
245 | 244 |
246 return 0 | 245 return 0 |
247 | 246 |
248 | 247 |
249 if __name__ == '__main__': | 248 if __name__ == '__main__': |
250 sys.exit(main()) | 249 sys.exit(main()) |
OLD | NEW |