| OLD | NEW | 
|---|
| 1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file | 
| 2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. | 
| 3 | 3 | 
| 4 vars = { | 4 vars = { | 
| 5   # Use this googlecode_url variable only if there is an internal mirror for it. | 5   # Use this googlecode_url variable only if there is an internal mirror for it. | 
| 6   # If you do not know, use the full path while defining your new deps entry. | 6   # If you do not know, use the full path while defining your new deps entry. | 
| 7   "googlecode_url": "http://%s.googlecode.com/svn", | 7   "googlecode_url": "http://%s.googlecode.com/svn", | 
| 8   "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8   "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 
| 9   "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9   "webkit_trunk": "http://src.chromium.org/blink/trunk", | 
| 10   "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10   "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 70     Var("chromium_git") + | 70     Var("chromium_git") + | 
| 71     "/external/angle.git@9b344317b2ced9123da6e0e55aeb75e8abca84c5", | 71     "/external/angle.git@9b344317b2ced9123da6e0e55aeb75e8abca84c5", | 
| 72 | 72 | 
| 73   "src/third_party/trace-viewer": | 73   "src/third_party/trace-viewer": | 
| 74     (Var("googlecode_url") % "trace-viewer") + "/trunk@731", | 74     (Var("googlecode_url") % "trace-viewer") + "/trunk@731", | 
| 75 | 75 | 
| 76   "src/third_party/WebKit": | 76   "src/third_party/WebKit": | 
| 77     Var("webkit_trunk") + "@" + Var("webkit_revision"), | 77     Var("webkit_trunk") + "@" + Var("webkit_revision"), | 
| 78 | 78 | 
| 79   "src/third_party/icu": | 79   "src/third_party/icu": | 
| 80     "/trunk/deps/third_party/icu46@210659", | 80     "/trunk/deps/third_party/icu46@211851", | 
| 81 | 81 | 
| 82   "src/third_party/libexif/sources": | 82   "src/third_party/libexif/sources": | 
| 83     "/trunk/deps/third_party/libexif/sources@146817", | 83     "/trunk/deps/third_party/libexif/sources@146817", | 
| 84 | 84 | 
| 85   "src/third_party/hunspell": | 85   "src/third_party/hunspell": | 
| 86    "/trunk/deps/third_party/hunspell@206172", | 86    "/trunk/deps/third_party/hunspell@206172", | 
| 87 | 87 | 
| 88   "src/third_party/hunspell_dictionaries": | 88   "src/third_party/hunspell_dictionaries": | 
| 89     "/trunk/deps/third_party/hunspell_dictionaries@193701", | 89     "/trunk/deps/third_party/hunspell_dictionaries@193701", | 
| 90 | 90 | 
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 505 include_rules = [ | 505 include_rules = [ | 
| 506   # Everybody can use some things. | 506   # Everybody can use some things. | 
| 507   "+base", | 507   "+base", | 
| 508   "+build", | 508   "+build", | 
| 509   "+ipc", | 509   "+ipc", | 
| 510 | 510 | 
| 511   # Everybody can use headers generated by tools/generate_library_loader. | 511   # Everybody can use headers generated by tools/generate_library_loader. | 
| 512   "+library_loaders", | 512   "+library_loaders", | 
| 513 | 513 | 
| 514   "+testing", | 514   "+testing", | 
| 515   "+third_party/icu/public", | 515   "+third_party/icu/source/common/unicode", | 
|  | 516   "+third_party/icu/source/i18n/unicode", | 
| 516   "+url", | 517   "+url", | 
| 517   # TODO(tfarina): Temporary, until we finish the migration to url. Remove this! | 518   # TODO(tfarina): Temporary, until we finish the migration to url. Remove this! | 
| 518   "!googleurl", | 519   "!googleurl", | 
| 519 ] | 520 ] | 
| 520 | 521 | 
| 521 | 522 | 
| 522 # checkdeps.py shouldn't check include paths for files in these dirs: | 523 # checkdeps.py shouldn't check include paths for files in these dirs: | 
| 523 skip_child_includes = [ | 524 skip_child_includes = [ | 
| 524   "breakpad", | 525   "breakpad", | 
| 525   "chrome_frame", | 526   "chrome_frame", | 
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 621     "pattern": ".", | 622     "pattern": ".", | 
| 622     "action": ["python", "src/build/gyp_chromium"], | 623     "action": ["python", "src/build/gyp_chromium"], | 
| 623   }, | 624   }, | 
| 624   { | 625   { | 
| 625     # Check for landmines (reasons to clobber the build). | 626     # Check for landmines (reasons to clobber the build). | 
| 626     "name": "landmines", | 627     "name": "landmines", | 
| 627     "pattern": ".", | 628     "pattern": ".", | 
| 628     "action": ["python", "src/build/landmines.py"], | 629     "action": ["python", "src/build/landmines.py"], | 
| 629   }, | 630   }, | 
| 630 ] | 631 ] | 
| OLD | NEW | 
|---|