| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le": | 499 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le": |
| 500 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo
glecode/eyesfree/braille@797", | 500 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo
glecode/eyesfree/braille@797", |
| 501 }, | 501 }, |
| 502 } | 502 } |
| 503 | 503 |
| 504 | 504 |
| 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 "+googleurl", | |
| 510 "+ipc", | 509 "+ipc", |
| 511 | 510 |
| 512 # Everybody can use headers generated by tools/generate_library_loader. | 511 # Everybody can use headers generated by tools/generate_library_loader. |
| 513 "+library_loaders", | 512 "+library_loaders", |
| 514 | 513 |
| 515 "+testing", | 514 "+testing", |
| 516 "+third_party/icu/public", | 515 "+third_party/icu/public", |
| 517 "+url", | 516 "+url", |
| 517 # TODO(tfarina): Temporary, until we finish the migration to url. Remove this! |
| 518 "!googleurl", |
| 518 ] | 519 ] |
| 519 | 520 |
| 520 | 521 |
| 521 # checkdeps.py shouldn't check include paths for files in these dirs: | 522 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 522 skip_child_includes = [ | 523 skip_child_includes = [ |
| 523 "breakpad", | 524 "breakpad", |
| 524 "chrome_frame", | 525 "chrome_frame", |
| 525 "delegate_execute", | 526 "delegate_execute", |
| 526 "googleurl", | 527 "googleurl", |
| 527 "metro_driver", | 528 "metro_driver", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 "pattern": ".", | 621 "pattern": ".", |
| 621 "action": ["python", "src/build/gyp_chromium"], | 622 "action": ["python", "src/build/gyp_chromium"], |
| 622 }, | 623 }, |
| 623 { | 624 { |
| 624 # Check for landmines (reasons to clobber the build). | 625 # Check for landmines (reasons to clobber the build). |
| 625 "name": "landmines", | 626 "name": "landmines", |
| 626 "pattern": ".", | 627 "pattern": ".", |
| 627 "action": ["python", "src/build/landmines.py"], | 628 "action": ["python", "src/build/landmines.py"], |
| 628 }, | 629 }, |
| 629 ] | 630 ] |
| OLD | NEW |