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 17 matching lines...) Expand all Loading... |
28 # in the Android tree. | 28 # in the Android tree. |
29 self._compile_but_not_snapshot_dependencies = [ | 29 self._compile_but_not_snapshot_dependencies = [ |
30 'third_party/mesa/src', | 30 'third_party/mesa/src', |
31 ] | 31 ] |
32 | 32 |
33 # Dependencies that need to be merged into the Android tree. | 33 # Dependencies that need to be merged into the Android tree. |
34 self._snapshot_into_android_dependencies = [ | 34 self._snapshot_into_android_dependencies = [ |
35 'sdch/open-vcdiff', | 35 'sdch/open-vcdiff', |
36 'testing/gtest', | 36 'testing/gtest', |
37 'third_party/WebKit', | 37 'third_party/WebKit', |
| 38 'third_party/angle', |
38 'third_party/angle_dx11', | 39 'third_party/angle_dx11', |
39 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' | 40 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' |
40 'braille'), | 41 'braille'), |
41 'third_party/freetype', | 42 'third_party/freetype', |
42 'third_party/icu', | 43 'third_party/icu', |
43 'third_party/leveldatabase/src', | 44 'third_party/leveldatabase/src', |
44 'third_party/libjingle/source/talk', | 45 'third_party/libjingle/source/talk', |
45 'third_party/libphonenumber/src/phonenumbers', | 46 'third_party/libphonenumber/src/phonenumbers', |
46 'third_party/libphonenumber/src/resources', | 47 'third_party/libphonenumber/src/resources', |
47 'third_party/openssl', | 48 'third_party/openssl', |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 with open(opts.output_json, 'w') as output_json_file: | 194 with open(opts.output_json, 'w') as output_json_file: |
194 json.dump(output_dict, output_json_file) | 195 json.dump(output_dict, output_json_file) |
195 else: | 196 else: |
196 print blacklist | 197 print blacklist |
197 | 198 |
198 return 0 | 199 return 0 |
199 | 200 |
200 | 201 |
201 if __name__ == '__main__': | 202 if __name__ == '__main__': |
202 sys.exit(main()) | 203 sys.exit(main()) |
OLD | NEW |