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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
859 'name': 'clang_format_linux', | 859 'name': 'clang_format_linux', |
860 'pattern': '.', | 860 'pattern': '.', |
861 'action': [ 'download_from_google_storage', | 861 'action': [ 'download_from_google_storage', |
862 '--no_resume', | 862 '--no_resume', |
863 '--platform=linux*', | 863 '--platform=linux*', |
864 '--no_auth', | 864 '--no_auth', |
865 '--bucket', 'chromium-clang-format', | 865 '--bucket', 'chromium-clang-format', |
866 '-s', 'src/buildtools/linux64/clang-format.sha1', | 866 '-s', 'src/buildtools/linux64/clang-format.sha1', |
867 ], | 867 ], |
868 }, | 868 }, |
| 869 { |
| 870 'name': 'gvr_static_shim_android_arm', |
| 871 'pattern': '\\.sha1', |
| 872 'action': [ 'download_from_google_storage', |
| 873 '--no_resume', |
| 874 '--platform=linux*', |
| 875 '--no_auth', |
| 876 '--bucket', 'chromium-gvr-static-shim', |
| 877 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.
sha1', |
| 878 ], |
| 879 }, |
| 880 { |
| 881 'name': 'gvr_static_shim_android_arm64', |
| 882 'pattern': '\\.sha1', |
| 883 'action': [ 'download_from_google_storage', |
| 884 '--no_resume', |
| 885 '--platform=linux*', |
| 886 '--no_auth', |
| 887 '--bucket', 'chromium-gvr-static-shim', |
| 888 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.
a.sha1', |
| 889 ], |
| 890 }, |
| 891 { |
| 892 'name': 'gvr_common_aar', |
| 893 'pattern': '\\.sha1', |
| 894 'action': [ 'download_from_google_storage', |
| 895 '--no_resume', |
| 896 '--platform=linux*', |
| 897 '--no_auth', |
| 898 '--bucket', 'chromium-gvr-static-shim', |
| 899 '-s', 'src/third_party/gvr-android-sdk/common_library.aar.sha1', |
| 900 ], |
| 901 }, |
869 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. | 902 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
870 { | 903 { |
871 'name': 'luci-go_win', | 904 'name': 'luci-go_win', |
872 'pattern': '.', | 905 'pattern': '.', |
873 'action': [ 'download_from_google_storage', | 906 'action': [ 'download_from_google_storage', |
874 '--no_resume', | 907 '--no_resume', |
875 '--platform=win32', | 908 '--platform=win32', |
876 '--no_auth', | 909 '--no_auth', |
877 '--bucket', 'chromium-luci', | 910 '--bucket', 'chromium-luci', |
878 '-d', 'src/tools/luci-go/win64', | 911 '-d', 'src/tools/luci-go/win64', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1021 ] | 1054 ] |
1022 | 1055 |
1023 recursedeps = [ | 1056 recursedeps = [ |
1024 # buildtools provides clang_format, libc++, and libc++abi | 1057 # buildtools provides clang_format, libc++, and libc++abi |
1025 'src/buildtools', | 1058 'src/buildtools', |
1026 # android_tools manages the NDK. | 1059 # android_tools manages the NDK. |
1027 'src/third_party/android_tools', | 1060 'src/third_party/android_tools', |
1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1061 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1029 ("src/third_party/angle", "DEPS.chromium"), | 1062 ("src/third_party/angle", "DEPS.chromium"), |
1030 ] | 1063 ] |
OLD | NEW |