| 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 | 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/cpp', | 34 'third_party/libaddressinput/src/cpp', |
| 35 'third_party/boringssl/src', | |
| 36 ] | 35 ] |
| 37 | 36 |
| 38 # Dependencies that need to be merged into the Android tree. | 37 # Dependencies that need to be merged into the Android tree. |
| 39 self._snapshot_into_android_dependencies = [ | 38 self._snapshot_into_android_dependencies = [ |
| 40 'sdch/open-vcdiff', | 39 'sdch/open-vcdiff', |
| 41 'testing/gtest', | 40 'testing/gtest', |
| 42 'third_party/WebKit', | 41 'third_party/WebKit', |
| 43 'third_party/angle', | 42 'third_party/angle', |
| 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/' |
| (...skipping 195 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 |