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 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1028 '--platform=win32', | 1028 '--platform=win32', |
1029 '--directory', | 1029 '--directory', |
1030 '--recursive', | 1030 '--recursive', |
1031 '--no_auth', | 1031 '--no_auth', |
1032 '--num_threads=16', | 1032 '--num_threads=16', |
1033 '--bucket', 'chromium-apache-win32', | 1033 '--bucket', 'chromium-apache-win32', |
1034 'src/third_party/apache-win32', | 1034 'src/third_party/apache-win32', |
1035 ], | 1035 ], |
1036 }, | 1036 }, |
1037 { | 1037 { |
1038 # Pull sanitizer-instrumented third-party libraries if requested via | |
1039 # GYP_DEFINES. | |
1040 'name': 'instrumented_libraries', | |
1041 'pattern': '\\.sha1', | |
1042 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | |
1043 }, | |
1044 { | |
1045 # Pull doclava binaries if building for Android. | 1038 # Pull doclava binaries if building for Android. |
1046 'name': 'doclava', | 1039 'name': 'doclava', |
1047 'pattern': '.', | 1040 'pattern': '.', |
1048 'action': ['python', | 1041 'action': ['python', |
1049 'src/build/android/download_doclava.py', | 1042 'src/build/android/download_doclava.py', |
1050 ], | 1043 ], |
1051 }, | 1044 }, |
1052 { | 1045 { |
1053 "name": "wasm_fuzzer", | 1046 "name": "wasm_fuzzer", |
1054 "pattern": ".", | 1047 "pattern": ".", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 recursedeps = [ | 1142 recursedeps = [ |
1150 # buildtools provides clang_format, libc++, and libc++abi | 1143 # buildtools provides clang_format, libc++, and libc++abi |
1151 'src/buildtools', | 1144 'src/buildtools', |
1152 # android_tools manages the NDK. | 1145 # android_tools manages the NDK. |
1153 'src/third_party/android_tools', | 1146 'src/third_party/android_tools', |
1154 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1147 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1155 ("src/third_party/angle", "DEPS.chromium"), | 1148 ("src/third_party/angle", "DEPS.chromium"), |
1156 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1149 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
1157 ("src/third_party/swiftshader", "DEPS"), | 1150 ("src/third_party/swiftshader", "DEPS"), |
1158 ] | 1151 ] |
OLD | NEW |