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

Side by Side Diff: DEPS

Issue 2715323002: Add XStream to Chromium third_party. (Closed)
Patch Set: Fix year in copyright thing Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/.gitignore » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is used to manage the dependencies of the Chromium src repo. It is 1 # This file is used to manage the dependencies of the Chromium src repo. It is
2 # used by gclient to determine what version of each dependency to check out, and 2 # used by gclient to determine what version of each dependency to check out, and
3 # where. 3 # where.
4 # 4 #
5 # For more information, please refer to the official documentation: 5 # For more information, please refer to the official documentation:
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
7 # 7 #
8 # When adding a new dependency, please update the top-level .gitignore file 8 # When adding a new dependency, please update the top-level .gitignore file
9 # to list the dependency's destination directory. 9 # to list the dependency's destination directory.
10 # 10 #
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 { 762 {
763 'name': 'objenesis', 763 'name': 'objenesis',
764 'pattern': '.', 764 'pattern': '.',
765 'action': ['python', 765 'action': ['python',
766 'src/build/android/update_deps/update_third_party_deps.py', 766 'src/build/android/update_deps/update_third_party_deps.py',
767 'download', 767 'download',
768 '-b', 'chromium-objenesis', 768 '-b', 'chromium-objenesis',
769 '-l', 'third_party/objenesis' 769 '-l', 'third_party/objenesis'
770 ], 770 ],
771 }, 771 },
772 {
773 'name': 'xstream',
774 'pattern': '.',
775 'action': ['python',
776 'src/build/android/update_deps/update_third_party_deps.py',
777 'download',
778 '-b', 'chromium-robolectric',
779 '-l', 'third_party/xstream'
780 ],
781 },
772 # Downloads the VR Services and Daydream Home APKs used for VR testing on 782 # Downloads the VR Services and Daydream Home APKs used for VR testing on
773 # Android. 783 # Android.
774 { 784 {
775 'name': 'vr_services_apks', 785 'name': 'vr_services_apks',
776 'pattern': '.', 786 'pattern': '.',
777 'action': ['python', 787 'action': ['python',
778 'src/build/android/update_deps/update_third_party_deps.py', 788 'src/build/android/update_deps/update_third_party_deps.py',
779 'download', 789 'download',
780 '-b', 'chrome-vr-test-apks/vr_services', 790 '-b', 'chrome-vr-test-apks/vr_services',
781 '-l', 'third_party/gvr-android-sdk/test-apks/vr_services' 791 '-l', 'third_party/gvr-android-sdk/test-apks/vr_services'
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 recursedeps = [ 1157 recursedeps = [
1148 # buildtools provides clang_format, libc++, and libc++abi 1158 # buildtools provides clang_format, libc++, and libc++abi
1149 'src/buildtools', 1159 'src/buildtools',
1150 # android_tools manages the NDK. 1160 # android_tools manages the NDK.
1151 'src/third_party/android_tools', 1161 'src/third_party/android_tools',
1152 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. 1162 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1153 ("src/third_party/angle", "DEPS.chromium"), 1163 ("src/third_party/angle", "DEPS.chromium"),
1154 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. 1164 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero.
1155 ("src/third_party/swiftshader", "DEPS"), 1165 ("src/third_party/swiftshader", "DEPS"),
1156 ] 1166 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698