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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", | 1011 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", |
1012 ], | 1012 ], |
1013 }, | 1013 }, |
1014 { | 1014 { |
1015 'name': 'clang_format_merge_driver', | 1015 'name': 'clang_format_merge_driver', |
1016 'pattern': '.', | 1016 'pattern': '.', |
1017 'action': [ 'python', | 1017 'action': [ 'python', |
1018 'src/tools/clang_format_merge_driver/install_git_hook.py', | 1018 'src/tools/clang_format_merge_driver/install_git_hook.py', |
1019 ], | 1019 ], |
1020 }, | 1020 }, |
| 1021 { |
| 1022 'name': 'devtools_install_node', |
| 1023 'action': [ 'python', |
| 1024 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.
py', |
| 1025 '--running-as-hook', |
| 1026 '--version', |
| 1027 ], |
| 1028 }, |
1021 ] | 1029 ] |
1022 | 1030 |
1023 recursedeps = [ | 1031 recursedeps = [ |
1024 # buildtools provides clang_format, libc++, and libc++abi | 1032 # buildtools provides clang_format, libc++, and libc++abi |
1025 'src/buildtools', | 1033 'src/buildtools', |
1026 # android_tools manages the NDK. | 1034 # android_tools manages the NDK. |
1027 'src/third_party/android_tools', | 1035 'src/third_party/android_tools', |
1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1036 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1029 ("src/third_party/angle", "DEPS.chromium"), | 1037 ("src/third_party/angle", "DEPS.chromium"), |
1030 ] | 1038 ] |
OLD | NEW |