Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 { | |
|
jbudorick
2017/02/27 02:16:44
OSTPR?
mikecase (-- gone --)
2017/02/27 16:21:06
yeah, I sent out an email. The library has the sam
mikecase (-- gone --)
2017/02/27 18:03:26
Got lgtm for adding xstream. Factored out xstream
| |
| 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 Loading... | |
| 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 ] |
| OLD | NEW |