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

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

Issue 111343004: [android_webview] Add angle to deps_whitelist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « no previous file | no next file » | 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 17 matching lines...) Expand all
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
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())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698