| 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 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1094 ], | 1094 ], |
| 1095 }, | 1095 }, |
| 1096 { | 1096 { |
| 1097 'name': 'devtools_install_node', | 1097 'name': 'devtools_install_node', |
| 1098 'action': [ 'python', | 1098 'action': [ 'python', |
| 1099 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.
py', | 1099 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.
py', |
| 1100 '--running-as-hook', | 1100 '--running-as-hook', |
| 1101 '--version', | 1101 '--version', |
| 1102 ], | 1102 ], |
| 1103 }, | 1103 }, |
| 1104 |
| 1105 # Pull down Node binaries for WebUI toolchain. |
| 1106 { |
| 1107 'name': 'node_linux64', |
| 1108 'pattern': '.', |
| 1109 'action': [ 'download_from_google_storage', |
| 1110 '--no_resume', |
| 1111 '--platform=linux*', |
| 1112 '--extract', |
| 1113 '--no_auth', |
| 1114 '--bucket', 'chromium-nodejs/6.9.4', |
| 1115 '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 1116 ], |
| 1117 }, |
| 1118 { |
| 1119 'name': 'node_mac', |
| 1120 'pattern': '.', |
| 1121 'action': [ 'download_from_google_storage', |
| 1122 '--no_resume', |
| 1123 '--platform=darwin', |
| 1124 '--extract', |
| 1125 '--no_auth', |
| 1126 '--bucket', 'chromium-nodejs/6.9.4', |
| 1127 '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 1128 ], |
| 1129 }, |
| 1130 { |
| 1131 'name': 'node_win', |
| 1132 'pattern': '.', |
| 1133 'action': [ 'download_from_google_storage', |
| 1134 '--no_resume', |
| 1135 '--platform=win32', |
| 1136 '--no_auth', |
| 1137 '--bucket', 'chromium-nodejs/6.9.4', |
| 1138 '-s', 'src/third_party/node/win/node.exe.sha1', |
| 1139 ], |
| 1140 }, |
| 1141 |
| 1142 # Pull down NPM dependencies for WebUI toolchain. |
| 1143 { |
| 1144 'name': 'webui_node_modules', |
| 1145 'pattern': '.', |
| 1146 'action': [ 'download_from_google_storage', |
| 1147 '--no_resume', |
| 1148 '--extract', |
| 1149 '--no_auth', |
| 1150 '--bucket', 'chromium-nodejs', |
| 1151 '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 1152 ], |
| 1153 }, |
| 1104 ] | 1154 ] |
| 1105 | 1155 |
| 1106 recursedeps = [ | 1156 recursedeps = [ |
| 1107 # buildtools provides clang_format, libc++, and libc++abi | 1157 # buildtools provides clang_format, libc++, and libc++abi |
| 1108 'src/buildtools', | 1158 'src/buildtools', |
| 1109 # android_tools manages the NDK. | 1159 # android_tools manages the NDK. |
| 1110 'src/third_party/android_tools', | 1160 'src/third_party/android_tools', |
| 1111 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1161 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1112 ("src/third_party/angle", "DEPS.chromium"), | 1162 ("src/third_party/angle", "DEPS.chromium"), |
| 1113 ] | 1163 ] |
| OLD | NEW |