| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 '--bucket', 'chromium-nodejs', | 883 '--bucket', 'chromium-nodejs', |
| 884 '-s', 'src/third_party/node/node_modules.tar.gz.sha1', | 884 '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 885 ], | 885 ], |
| 886 }, | 886 }, |
| 887 | 887 |
| 888 # Download Telemetry's binary dependencies | 888 # Download Telemetry's binary dependencies |
| 889 { | 889 { |
| 890 'name': 'fetch_telemetry_binary_dependencies', | 890 'name': 'fetch_telemetry_binary_dependencies', |
| 891 'pattern': '.', | 891 'pattern': '.', |
| 892 'action': [ 'python', | 892 'action': [ 'python', |
| 893 'src/tools/perf/conditionally_execute', |
| 894 '--gyp-condition', 'fetch_telemetry_dependencies=1', |
| 893 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d
ependencies', | 895 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_d
ependencies', |
| 894 ], | 896 ], |
| 895 }, | 897 }, |
| 896 | 898 |
| 897 # Download checkstyle for use in PRESUBMIT for Java changes. | 899 # Download checkstyle for use in PRESUBMIT for Java changes. |
| 898 # TODO(jbudorick): Move this back down to the android section of hooks_os | 900 # TODO(jbudorick): Move this back down to the android section of hooks_os |
| 899 # once it's no longer necessary for the chromium_presubmit bot. | 901 # once it's no longer necessary for the chromium_presubmit bot. |
| 900 { | 902 { |
| 901 'name': 'checkstyle', | 903 'name': 'checkstyle', |
| 902 'pattern': '.', | 904 'pattern': '.', |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1180 } | 1182 } |
| 1181 | 1183 |
| 1182 recursedeps = [ | 1184 recursedeps = [ |
| 1183 # buildtools provides clang_format, libc++, and libc++abi | 1185 # buildtools provides clang_format, libc++, and libc++abi |
| 1184 'src/buildtools', | 1186 'src/buildtools', |
| 1185 # android_tools manages the NDK. | 1187 # android_tools manages the NDK. |
| 1186 'src/third_party/android_tools', | 1188 'src/third_party/android_tools', |
| 1187 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1189 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1188 ("src/third_party/angle", "DEPS.chromium"), | 1190 ("src/third_party/angle", "DEPS.chromium"), |
| 1189 ] | 1191 ] |
| OLD | NEW |