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