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

Side by Side Diff: DEPS

Issue 4511001: Sanitize checkdeps-checked DEPS a bit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/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 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "71311", 7 "webkit_revision": "71311",
8 "skia_revision": "621", 8 "skia_revision": "621",
9 "chromium_git": "http://git.chromium.org/git", 9 "chromium_git": "http://git.chromium.org/git",
10 "swig_revision": "40423", 10 "swig_revision": "40423",
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 (Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3", 273 (Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3",
274 }, 274 },
275 } 275 }
276 276
277 277
278 include_rules = [ 278 include_rules = [
279 # Everybody can use some things. 279 # Everybody can use some things.
280 "+base", 280 "+base",
281 "+build", 281 "+build",
282 "+ipc", 282 "+ipc",
283 "+rlz",
284 "+third_party/undoview",
285 283
286 # For now, we allow ICU to be included by specifying "unicode/...", although 284 # For now, we allow ICU to be included by specifying "unicode/...", although
287 # this should probably change. 285 # this should probably change.
288 "+unicode", 286 "+unicode",
289 "+testing", 287 "+testing",
290 ] 288 ]
291 289
292 290
293 # checkdeps.py shouldn't check include paths for files in these dirs: 291 # checkdeps.py shouldn't check include paths for files in these dirs:
294 skip_child_includes = [ 292 skip_child_includes = [
295 "breakpad", 293 "breakpad",
296 "ceee", 294 "ceee",
297 "chrome_frame", 295 "chrome_frame",
298 "gears", 296 "gears",
299 "native_client", 297 "native_client",
300 "o3d", 298 "o3d",
301 "sdch", 299 "sdch",
302 "skia", 300 "skia",
303 "testing", 301 "testing",
304 "third_party", 302 "third_party",
305 "v8", 303 "v8",
306 ] 304 ]
307 305
308 306
309 hooks = [ 307 hooks = [
310 { 308 {
311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 309 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
312 "pattern": ".", 310 "pattern": ".",
313 "action": ["python", "src/build/gyp_chromium"], 311 "action": ["python", "src/build/gyp_chromium"],
314 }, 312 },
315 ] 313 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698