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

Side by Side Diff: DEPS

Issue 2712733002: Add VR test APKs hooks to DEPS (Closed)
Patch Set: Created 3 years, 10 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 | 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 # 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 # Downloads the VR Services and Daydream Home APKs used for VR testing on
773 # Android.
774 {
775 'name': 'vr_services_apks',
776 'pattern': '.',
777 'action': ['python',
778 'src/build/android/update_deps/update_third_party_deps.py',
779 'download',
780 '-b', 'chrome-vr-test-apks/vr_services',
781 '-l', 'third_party/gvr-android-sdk/test-apks/vr_services'
782 ],
783 },
784 {
785 'name': 'daydream_home_apks',
786 'pattern': '.',
787 'action': ['python',
788 'src/build/android/update_deps/update_third_party_deps.py',
789 'download',
790 '-b', 'chrome-vr-test-apks/daydream_home',
791 '-l', 'third_party/gvr-android-sdk/test-apks/daydream_home'
792 ],
793 },
772 { 794 {
773 # Downloads the current stable linux sysroot to build/linux/ if needed. 795 # Downloads the current stable linux sysroot to build/linux/ if needed.
774 # This sysroot updates at about the same rate that the chrome build deps 796 # This sysroot updates at about the same rate that the chrome build deps
775 # change. This script is a no-op except for linux users who are doing 797 # change. This script is a no-op except for linux users who are doing
776 # official chrome builds or cross compiling. 798 # official chrome builds or cross compiling.
777 'name': 'sysroot', 799 'name': 'sysroot',
778 'pattern': '.', 800 'pattern': '.',
779 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', 801 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
780 '--running-as-hook'], 802 '--running-as-hook'],
781 }, 803 },
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 recursedeps = [ 1147 recursedeps = [
1126 # buildtools provides clang_format, libc++, and libc++abi 1148 # buildtools provides clang_format, libc++, and libc++abi
1127 'src/buildtools', 1149 'src/buildtools',
1128 # android_tools manages the NDK. 1150 # android_tools manages the NDK.
1129 'src/third_party/android_tools', 1151 'src/third_party/android_tools',
1130 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. 1152 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1131 ("src/third_party/angle", "DEPS.chromium"), 1153 ("src/third_party/angle", "DEPS.chromium"),
1132 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. 1154 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero.
1133 ("src/third_party/swiftshader", "DEPS"), 1155 ("src/third_party/swiftshader", "DEPS"),
1134 ] 1156 ]
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