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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 | 542 |
543 "src/third_party/aosp": | 543 "src/third_party/aosp": |
544 "/trunk/deps/third_party/aosp@148330", | 544 "/trunk/deps/third_party/aosp@148330", |
545 | 545 |
546 "src/third_party/android_tools": | 546 "src/third_party/android_tools": |
547 Var("chromium_git") + "/android_tools.git" + | 547 Var("chromium_git") + "/android_tools.git" + |
548 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", | 548 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", |
549 | 549 |
550 "src/third_party/findbugs": | 550 "src/third_party/findbugs": |
551 "/trunk/deps/third_party/findbugs@163586", | 551 "/trunk/deps/third_party/findbugs@163586", |
| 552 |
| 553 "src/third_party/guava/src": |
| 554 Var('chromium_git') + '/external/guava-libraries.git@c523556ab7d0f05afadeb
d20e7768d4c16af8771', |
| 555 |
| 556 "src/third_party/jsr-305/src": |
| 557 (Var("googlecode_url") % "jsr-305") + "/trunk@51", |
552 }, | 558 }, |
553 } | 559 } |
554 | 560 |
555 | 561 |
556 include_rules = [ | 562 include_rules = [ |
557 # Everybody can use some things. | 563 # Everybody can use some things. |
558 "+base", | 564 "+base", |
559 "+build", | 565 "+build", |
560 "+googleurl", | 566 "+googleurl", |
561 "+ipc", | 567 "+ipc", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 631 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
626 "pattern": ".", | 632 "pattern": ".", |
627 "action": ["python", "src/build/gyp_chromium"], | 633 "action": ["python", "src/build/gyp_chromium"], |
628 }, | 634 }, |
629 { | 635 { |
630 # Check for landmines (reasons to clobber the build). | 636 # Check for landmines (reasons to clobber the build). |
631 "pattern": ".", | 637 "pattern": ".", |
632 "action": ["python", "src/build/landmines.py"], | 638 "action": ["python", "src/build/landmines.py"], |
633 }, | 639 }, |
634 ] | 640 ] |
OLD | NEW |