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

Side by Side Diff: DEPS

Issue 2726243002: Move VR test APK downloading behind an env var (Closed)
Patch Set: print check_output > check_call 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/gvr-android-sdk/test-apks/update.py » ('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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 { 768 {
769 'name': 'xstream', 769 'name': 'xstream',
770 'pattern': '.', 770 'pattern': '.',
771 'action': ['python', 771 'action': ['python',
772 'src/build/android/update_deps/update_third_party_deps.py', 772 'src/build/android/update_deps/update_third_party_deps.py',
773 'download', 773 'download',
774 '-b', 'chromium-robolectric', 774 '-b', 'chromium-robolectric',
775 '-l', 'third_party/xstream' 775 '-l', 'third_party/xstream'
776 ], 776 ],
777 }, 777 },
778 # Downloads the VR Services and Daydream Home APKs used for VR testing on
779 # Android.
780 {
781 'name': 'vr_services_apks',
782 'pattern': '.',
783 'action': ['python',
784 'src/build/android/update_deps/update_third_party_deps.py',
785 'download',
786 '-b', 'chrome-vr-test-apks/vr_services',
787 '-l', 'third_party/gvr-android-sdk/test-apks/vr_services'
788 ],
789 },
790 {
791 'name': 'daydream_home_apks',
792 'pattern': '.',
793 'action': ['python',
794 'src/build/android/update_deps/update_third_party_deps.py',
795 'download',
796 '-b', 'chrome-vr-test-apks/daydream_home',
797 '-l', 'third_party/gvr-android-sdk/test-apks/daydream_home'
798 ],
799 },
800 { 778 {
801 # Downloads the current stable linux sysroot to build/linux/ if needed. 779 # Downloads the current stable linux sysroot to build/linux/ if needed.
802 # This sysroot updates at about the same rate that the chrome build deps 780 # This sysroot updates at about the same rate that the chrome build deps
803 # change. This script is a no-op except for linux users who are doing 781 # change. This script is a no-op except for linux users who are doing
804 # official chrome builds or cross compiling. 782 # official chrome builds or cross compiling.
805 'name': 'sysroot', 783 'name': 'sysroot',
806 'pattern': '.', 784 'pattern': '.',
807 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', 785 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
808 '--running-as-hook'], 786 '--running-as-hook'],
809 }, 787 },
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 'name': 'webui_node_modules', 1119 'name': 'webui_node_modules',
1142 'pattern': '.', 1120 'pattern': '.',
1143 'action': [ 'download_from_google_storage', 1121 'action': [ 'download_from_google_storage',
1144 '--no_resume', 1122 '--no_resume',
1145 '--extract', 1123 '--extract',
1146 '--no_auth', 1124 '--no_auth',
1147 '--bucket', 'chromium-nodejs', 1125 '--bucket', 'chromium-nodejs',
1148 '-s', 'src/third_party/node/node_modules.tar.gz.sha1', 1126 '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
1149 ], 1127 ],
1150 }, 1128 },
1129 # Download VR test APKs only if the environment variable is set
1130 {
1131 'name': 'vr_test_apks',
1132 'pattern': '.',
1133 'action': [ 'python',
1134 'src/third_party/gvr-android-sdk/test-apks/update.py',
1135 ],
1136 },
1151 ] 1137 ]
1152 1138
1153 recursedeps = [ 1139 recursedeps = [
1154 # buildtools provides clang_format, libc++, and libc++abi 1140 # buildtools provides clang_format, libc++, and libc++abi
1155 'src/buildtools', 1141 'src/buildtools',
1156 # android_tools manages the NDK. 1142 # android_tools manages the NDK.
1157 'src/third_party/android_tools', 1143 'src/third_party/android_tools',
1158 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. 1144 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1159 ("src/third_party/angle", "DEPS.chromium"), 1145 ("src/third_party/angle", "DEPS.chromium"),
1160 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. 1146 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero.
1161 ("src/third_party/swiftshader", "DEPS"), 1147 ("src/third_party/swiftshader", "DEPS"),
1162 ] 1148 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/gvr-android-sdk/test-apks/update.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698