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

Side by Side Diff: DEPS

Issue 737493002: Remove DEPS from sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: No need for the PRESUBMIT.py change Created 6 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
« no previous file with comments | « no previous file | sky/engine/DEPS » ('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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 '+url', 179 '+url',
180 ] 180 ]
181 181
182 182
183 # checkdeps.py shouldn't check include paths for files in these dirs: 183 # checkdeps.py shouldn't check include paths for files in these dirs:
184 skip_child_includes = [ 184 skip_child_includes = [
185 'sdch', 185 'sdch',
186 'skia', 186 'skia',
187 'testing', 187 'testing',
188 'third_party', 188 'third_party',
189 'sky',
189 ] 190 ]
190 191
191 192
192 hooks = [ 193 hooks = [
193 { 194 {
194 # This clobbers when necessary (based on get_landmines.py). It must be the 195 # This clobbers when necessary (based on get_landmines.py). It must be the
195 # first hook so that other things that get/generate into the output 196 # first hook so that other things that get/generate into the output
196 # directory will not subsequently be clobbered. 197 # directory will not subsequently be clobbered.
197 'name': 'landmines', 198 'name': 'landmines',
198 'pattern': '.', 199 'pattern': '.',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 # corresponding .py files have already been deleted. 306 # corresponding .py files have already been deleted.
306 'name': 'remove_stale_pyc_files', 307 'name': 'remove_stale_pyc_files',
307 'pattern': 'src/tools/.*\\.py', 308 'pattern': 'src/tools/.*\\.py',
308 'action': [ 309 'action': [
309 'python', 310 'python',
310 'src/tools/remove_stale_pyc_files.py', 311 'src/tools/remove_stale_pyc_files.py',
311 'src/tools', 312 'src/tools',
312 ], 313 ],
313 }, 314 },
314 ] 315 ]
OLDNEW
« no previous file with comments | « no previous file | sky/engine/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698