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

Side by Side Diff: DEPS

Issue 10824050: Initial change to DEPS to add android_tools repo to third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to latest. Created 8 years, 4 months 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 | « no previous file | 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 Var("chromiumos_git") + "/platform/system_api.git" + 468 Var("chromiumos_git") + "/platform/system_api.git" +
469 "@da5b4f13d8f80f70909d474f1b6814df1a97302d", 469 "@da5b4f13d8f80f70909d474f1b6814df1a97302d",
470 }, 470 },
471 "android": { 471 "android": {
472 "src/third_party/freetype": 472 "src/third_party/freetype":
473 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + 473 Var("chromium_git") + "/chromium/src/third_party/freetype.git" +
474 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7", 474 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7",
475 475
476 "src/third_party/aosp": 476 "src/third_party/aosp":
477 "/trunk/deps/third_party/aosp@148330", 477 "/trunk/deps/third_party/aosp@148330",
478
479 "src/third_party/android_tools":
480 Var("chromium_git") + "/android_tools.git" +
481 "@21f9993b4ce955f1af6a88e5dc1135ba645920a7",
478 }, 482 },
479 } 483 }
480 484
481 485
482 include_rules = [ 486 include_rules = [
483 # Everybody can use some things. 487 # Everybody can use some things.
484 "+base", 488 "+base",
485 "+build", 489 "+build",
486 "+googleurl", 490 "+googleurl",
487 "+ipc", 491 "+ipc",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 "pattern": ".", 571 "pattern": ".",
568 "action": ["python", "src/build/util/lastchange.py", 572 "action": ["python", "src/build/util/lastchange.py",
569 "-o", "src/build/util/LASTCHANGE"], 573 "-o", "src/build/util/LASTCHANGE"],
570 }, 574 },
571 { 575 {
572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 576 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
573 "pattern": ".", 577 "pattern": ".",
574 "action": ["python", "src/build/gyp_chromium"], 578 "action": ["python", "src/build/gyp_chromium"],
575 }, 579 },
576 ] 580 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698