| 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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 'name': 'ow2_asm', | 1050 'name': 'ow2_asm', |
| 1051 'pattern': '.', | 1051 'pattern': '.', |
| 1052 'action': ['python', | 1052 'action': ['python', |
| 1053 'src/build/android/update_deps/update_third_party_deps.py', | 1053 'src/build/android/update_deps/update_third_party_deps.py', |
| 1054 'download', | 1054 'download', |
| 1055 '-b', 'chromium-ow2-asm', | 1055 '-b', 'chromium-ow2-asm', |
| 1056 '-l', 'third_party/ow2_asm' | 1056 '-l', 'third_party/ow2_asm' |
| 1057 ], | 1057 ], |
| 1058 }, | 1058 }, |
| 1059 { | 1059 { |
| 1060 'name': 'retrolambda', | |
| 1061 'pattern': '.', | |
| 1062 'action': ['python', | |
| 1063 'src/build/android/update_deps/update_third_party_deps.py', | |
| 1064 'download', | |
| 1065 '-b', 'chromium-android-tools/retrolambda', | |
| 1066 '-l', 'third_party/retrolambda' | |
| 1067 ], | |
| 1068 }, | |
| 1069 { | |
| 1070 'name': 'desugar', | 1060 'name': 'desugar', |
| 1071 'pattern': '.', | 1061 'pattern': '.', |
| 1072 'action': ['python', | 1062 'action': ['python', |
| 1073 'src/build/android/update_deps/update_third_party_deps.py', | 1063 'src/build/android/update_deps/update_third_party_deps.py', |
| 1074 'download', | 1064 'download', |
| 1075 '-b', 'chromium-android-tools/bazel/desugar', | 1065 '-b', 'chromium-android-tools/bazel/desugar', |
| 1076 '-l', 'third_party/bazel/desugar' | 1066 '-l', 'third_party/bazel/desugar' |
| 1077 ], | 1067 ], |
| 1078 }, | 1068 }, |
| 1079 { | 1069 { |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1225 } | 1215 } |
| 1226 | 1216 |
| 1227 recursedeps = [ | 1217 recursedeps = [ |
| 1228 # buildtools provides clang_format, libc++, and libc++abi | 1218 # buildtools provides clang_format, libc++, and libc++abi |
| 1229 'src/buildtools', | 1219 'src/buildtools', |
| 1230 # android_tools manages the NDK. | 1220 # android_tools manages the NDK. |
| 1231 'src/third_party/android_tools', | 1221 'src/third_party/android_tools', |
| 1232 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1222 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1233 ("src/third_party/angle", "DEPS.chromium"), | 1223 ("src/third_party/angle", "DEPS.chromium"), |
| 1234 ] | 1224 ] |
| OLD | NEW |