Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: android_webview/buildbot/deps_whitelist.py

Issue 401153002: Switch to BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across DEPS change Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | android_webview/native/webview_native.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
35 ] 36 ]
36 37
37 # Dependencies that need to be merged into the Android tree. 38 # Dependencies that need to be merged into the Android tree.
38 self._snapshot_into_android_dependencies = [ 39 self._snapshot_into_android_dependencies = [
39 'sdch/open-vcdiff', 40 'sdch/open-vcdiff',
40 'testing/gtest', 41 'testing/gtest',
41 'third_party/WebKit', 42 'third_party/WebKit',
42 'third_party/angle', 43 'third_party/angle',
43 'third_party/brotli/src', 44 'third_party/brotli/src',
44 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/' 45 ('third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/'
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 with open(opts.output_json, 'w') as output_json_file: 241 with open(opts.output_json, 'w') as output_json_file:
241 json.dump(output_dict, output_json_file) 242 json.dump(output_dict, output_json_file)
242 else: 243 else:
243 print blacklist 244 print blacklist
244 245
245 return 0 246 return 0
246 247
247 248
248 if __name__ == '__main__': 249 if __name__ == '__main__':
249 sys.exit(main()) 250 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | android_webview/native/webview_native.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698