| 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://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
| 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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 | 489 |
| 490 "src/third_party/lss": | 490 "src/third_party/lss": |
| 491 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 491 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
| 492 Var("lss_revision")), | 492 Var("lss_revision")), |
| 493 | 493 |
| 494 "src/third_party/openssl": | 494 "src/third_party/openssl": |
| 495 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), | 495 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), |
| 496 | 496 |
| 497 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le": | 497 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail
le": |
| 498 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo
glecode/eyesfree/braille@797", | 498 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo
glecode/eyesfree/braille@797", |
| 499 | |
| 500 "src/third_party/cld_2/src": None, | |
| 501 }, | 499 }, |
| 502 } | 500 } |
| 503 | 501 |
| 504 | 502 |
| 505 include_rules = [ | 503 include_rules = [ |
| 506 # Everybody can use some things. | 504 # Everybody can use some things. |
| 507 "+base", | 505 "+base", |
| 508 "+build", | 506 "+build", |
| 509 "+ipc", | 507 "+ipc", |
| 510 | 508 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 "pattern": ".", | 617 "pattern": ".", |
| 620 "action": ["python", "src/build/gyp_chromium"], | 618 "action": ["python", "src/build/gyp_chromium"], |
| 621 }, | 619 }, |
| 622 { | 620 { |
| 623 # Check for landmines (reasons to clobber the build). | 621 # Check for landmines (reasons to clobber the build). |
| 624 "name": "landmines", | 622 "name": "landmines", |
| 625 "pattern": ".", | 623 "pattern": ".", |
| 626 "action": ["python", "src/build/landmines.py"], | 624 "action": ["python", "src/build/landmines.py"], |
| 627 }, | 625 }, |
| 628 ] | 626 ] |
| OLD | NEW |