Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: DEPS

Issue 2486903002: DevTools: Add support for installing node and running eslint over devtools. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.linux.json » ('j') | testing/buildbot/gn_isolate_map.pyl » ('J')

Powered by Google App Engine
This is Rietveld 408576698