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

Side by Side Diff: DEPS

Issue 11434058: Add guava and jsr-305 DEPS to third_party for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | « .gitignore ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698