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

Side by Side Diff: DEPS

Issue 489693002: [telemetry] Move stale .pyc check from Python import to gclient hook. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to tools/ Created 6 years, 4 months 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
« no previous file with comments | « no previous file | tools/remove_stale_pyc_files.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir>
8 # where <gcliendir> is the absolute path to the directory containing the 8 # where <gcliendir> is the absolute path to the directory containing the
9 # .gclient file (the parent of "src"). 9 # .gclient file (the parent of "src").
10 # 10 #
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 # write access to the git repo. To be removed sometime after Chrome to git 825 # write access to the git repo. To be removed sometime after Chrome to git
826 # migration completes (let's say Sep 1 2014). 826 # migration completes (let's say Sep 1 2014).
827 "name": "check_git_config", 827 "name": "check_git_config",
828 "pattern": ".", 828 "pattern": ".",
829 "action": [ 829 "action": [
830 "python", 830 "python",
831 "src/tools/check_git_config.py", 831 "src/tools/check_git_config.py",
832 "--running-as-hook", 832 "--running-as-hook",
833 ], 833 ],
834 }, 834 },
835 {
836 # Ensure that we don't accidentally reference any .pyc files whose
837 # corresponding .py files have already been deleted.
838 "name": "remove_stale_pyc_files",
839 "pattern": "src/tools/.\\.py",
Dirk Pranke 2014/08/20 01:02:23 I think you probably want "src/tools/.*\\.py" here
840 "action": [
841 "python",
842 "src/tools/remove_stale_pyc_files.py",
843 "src/tools",
844 ],
845 },
835 ] 846 ]
OLDNEW
« no previous file with comments | « no previous file | tools/remove_stale_pyc_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698