| 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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 'name': 'clang_format_linux', | 858 'name': 'clang_format_linux', |
| 859 'pattern': '.', | 859 'pattern': '.', |
| 860 'action': [ 'download_from_google_storage', | 860 'action': [ 'download_from_google_storage', |
| 861 '--no_resume', | 861 '--no_resume', |
| 862 '--platform=linux*', | 862 '--platform=linux*', |
| 863 '--no_auth', | 863 '--no_auth', |
| 864 '--bucket', 'chromium-clang-format', | 864 '--bucket', 'chromium-clang-format', |
| 865 '-s', 'src/buildtools/linux64/clang-format.sha1', | 865 '-s', 'src/buildtools/linux64/clang-format.sha1', |
| 866 ], | 866 ], |
| 867 }, | 867 }, |
| 868 # Pull the prebuilt libc++ static library for mac. | |
| 869 { | |
| 870 'name': 'libcpp_mac', | |
| 871 'pattern': '.', | |
| 872 'action': [ 'download_from_google_storage', | |
| 873 '--no_resume', | |
| 874 '--platform=darwin', | |
| 875 '--no_auth', | |
| 876 '--bucket', 'chromium-libcpp', | |
| 877 '-s', 'src/third_party/libc++-static/libc++.a.sha1', | |
| 878 ], | |
| 879 }, | |
| 880 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. | 868 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 881 { | 869 { |
| 882 'name': 'luci-go_win', | 870 'name': 'luci-go_win', |
| 883 'pattern': '.', | 871 'pattern': '.', |
| 884 'action': [ 'download_from_google_storage', | 872 'action': [ 'download_from_google_storage', |
| 885 '--no_resume', | 873 '--no_resume', |
| 886 '--platform=win32', | 874 '--platform=win32', |
| 887 '--no_auth', | 875 '--no_auth', |
| 888 '--bucket', 'chromium-luci', | 876 '--bucket', 'chromium-luci', |
| 889 '-d', 'src/tools/luci-go/win64', | 877 '-d', 'src/tools/luci-go/win64', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 ], | 1010 ], |
| 1023 }, | 1011 }, |
| 1024 ] | 1012 ] |
| 1025 | 1013 |
| 1026 recursedeps = [ | 1014 recursedeps = [ |
| 1027 # android_tools manages the NDK. | 1015 # android_tools manages the NDK. |
| 1028 'src/third_party/android_tools', | 1016 'src/third_party/android_tools', |
| 1029 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1017 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1030 ("src/third_party/angle", "DEPS.chromium"), | 1018 ("src/third_party/angle", "DEPS.chromium"), |
| 1031 ] | 1019 ] |
| OLD | NEW |