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 14 matching lines...) Expand all Loading... |
25 # here first. | 25 # here first. |
26 # This is a staging area for deps that are accepted by the android_webview | 26 # This is a staging area for deps that are accepted by the android_webview |
27 # team and are in the process of having the required branches being created | 27 # team and are in the process of having the required branches being created |
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 'googleurl', | |
36 'sdch/open-vcdiff', | 35 'sdch/open-vcdiff', |
37 'testing/gtest', | 36 'testing/gtest', |
38 'third_party/WebKit', | 37 'third_party/WebKit', |
39 'third_party/angle_dx11', | 38 'third_party/angle_dx11', |
40 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' | 39 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' |
41 'braille'), | 40 'braille'), |
42 'third_party/freetype', | 41 'third_party/freetype', |
43 'third_party/icu', | 42 'third_party/icu', |
44 'third_party/leveldatabase/src', | 43 'third_party/leveldatabase/src', |
45 'third_party/libjingle/source/talk', | 44 'third_party/libjingle/source/talk', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 with open(opts.output_json, 'w') as output_json_file: | 192 with open(opts.output_json, 'w') as output_json_file: |
194 json.dump(output_dict, output_json_file) | 193 json.dump(output_dict, output_json_file) |
195 else: | 194 else: |
196 print blacklist | 195 print blacklist |
197 | 196 |
198 return 0 | 197 return 0 |
199 | 198 |
200 | 199 |
201 if __name__ == '__main__': | 200 if __name__ == '__main__': |
202 sys.exit(main()) | 201 sys.exit(main()) |
OLD | NEW |