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 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1052 '-b', 'chromium-ow2-asm', | 1052 '-b', 'chromium-ow2-asm', |
| 1053 '-l', 'third_party/ow2_asm' | 1053 '-l', 'third_party/ow2_asm' |
| 1054 ], | 1054 ], |
| 1055 }, | 1055 }, |
| 1056 { | 1056 { |
| 1057 'name': 'retrolambda', | 1057 'name': 'retrolambda', |
| 1058 'pattern': '.', | 1058 'pattern': '.', |
| 1059 'action': ['python', | 1059 'action': ['python', |
| 1060 'src/build/android/update_deps/update_third_party_deps.py', | 1060 'src/build/android/update_deps/update_third_party_deps.py', |
| 1061 'download', | 1061 'download', |
| 1062 '-b', 'chromium-android-tools/retrolambda', | 1062 '-b', 'chromium-android-tools/retrolambda', |
|
Nico
2017/07/28 17:35:36
Are we going to remove this again?
F
2017/07/28 18:42:35
It will be removed in follow up CLs because curren
| |
| 1063 '-l', 'third_party/retrolambda' | 1063 '-l', 'third_party/retrolambda' |
| 1064 ], | 1064 ], |
| 1065 }, | 1065 }, |
| 1066 { | 1066 { |
| 1067 'name': 'desugar', | |
| 1068 'pattern': '.', | |
| 1069 'action': ['python', | |
| 1070 'src/build/android/update_deps/update_third_party_deps.py', | |
| 1071 'download', | |
| 1072 '-b', 'chromium-android-tools/bazel/desugar', | |
| 1073 '-l', 'third_party/bazel/desugar' | |
| 1074 ], | |
| 1075 }, | |
| 1076 { | |
| 1067 'name': 'apk-patch-size-estimator', | 1077 'name': 'apk-patch-size-estimator', |
| 1068 'pattern': '.', | 1078 'pattern': '.', |
| 1069 'action': ['python', | 1079 'action': ['python', |
| 1070 'src/build/android/update_deps/update_third_party_deps.py', | 1080 'src/build/android/update_deps/update_third_party_deps.py', |
| 1071 'download', | 1081 'download', |
| 1072 '-b', 'chromium-android-tools/apk-patch-size-estimator', | 1082 '-b', 'chromium-android-tools/apk-patch-size-estimator', |
| 1073 '-l', 'third_party/apk-patch-size-estimator/lib' | 1083 '-l', 'third_party/apk-patch-size-estimator/lib' |
| 1074 ], | 1084 ], |
| 1075 }, | 1085 }, |
| 1076 { | 1086 { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1212 } | 1222 } |
| 1213 | 1223 |
| 1214 recursedeps = [ | 1224 recursedeps = [ |
| 1215 # buildtools provides clang_format, libc++, and libc++abi | 1225 # buildtools provides clang_format, libc++, and libc++abi |
| 1216 'src/buildtools', | 1226 'src/buildtools', |
| 1217 # android_tools manages the NDK. | 1227 # android_tools manages the NDK. |
| 1218 'src/third_party/android_tools', | 1228 'src/third_party/android_tools', |
| 1219 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1229 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1220 ("src/third_party/angle", "DEPS.chromium"), | 1230 ("src/third_party/angle", "DEPS.chromium"), |
| 1221 ] | 1231 ] |
| OLD | NEW |