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

Side by Side Diff: DEPS

Issue 12212081: Add chromite and pyelftools to DEPS file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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
« 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 553
554 # For Linux and Chromium OS. 554 # For Linux and Chromium OS.
555 "src/third_party/cros_system_api": 555 "src/third_party/cros_system_api":
556 Var("chromiumos_git") + "/platform/system_api.git" + 556 Var("chromiumos_git") + "/platform/system_api.git" +
557 "@332a38018217d39bb5325d535913796200ff6780", 557 "@332a38018217d39bb5325d535913796200ff6780",
558 558
559 # Note that this is different from Android's freetype repo. 559 # Note that this is different from Android's freetype repo.
560 "src/third_party/freetype2/src": 560 "src/third_party/freetype2/src":
561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + 561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" +
562 "@d699c2994ecc178c4ed05ac2086061b2034c2178", 562 "@d699c2994ecc178c4ed05ac2086061b2034c2178",
563
564 # Build tools for targeting ChromeOS.
565 "src/third_party/chromite":
566 Var("chromiumos_git") + "/chromite.git" +
567 "@7cb5f04c5947792307c55487878f2a12bc7bfc76",
568
569 # Dependency of chromite.git.
570 "src/third_party/pyelftools":
571 Var("chromiumos_git") + "/third_party/pyelftools.git" +
572 "@bdc1d380acd88d4bfaf47265008091483b0d614e",
563 }, 573 },
564 "android": { 574 "android": {
565 "src/third_party/android_tools": 575 "src/third_party/android_tools":
566 Var("chromium_git") + "/android_tools.git" + 576 Var("chromium_git") + "/android_tools.git" +
567 "@02d3db3c400baa959883006dc697c6cbd70c5194", 577 "@02d3db3c400baa959883006dc697c6cbd70c5194",
568 578
569 "src/third_party/aosp": 579 "src/third_party/aosp":
570 "/trunk/deps/third_party/aosp@148330", 580 "/trunk/deps/third_party/aosp@148330",
571 581
572 "src/third_party/apache-mime4j": 582 "src/third_party/apache-mime4j":
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 696 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
687 "pattern": ".", 697 "pattern": ".",
688 "action": ["python", "src/build/gyp_chromium"], 698 "action": ["python", "src/build/gyp_chromium"],
689 }, 699 },
690 { 700 {
691 # Check for landmines (reasons to clobber the build). 701 # Check for landmines (reasons to clobber the build).
692 "pattern": ".", 702 "pattern": ".",
693 "action": ["python", "src/build/landmines.py"], 703 "action": ["python", "src/build/landmines.py"],
694 }, 704 },
695 ] 705 ]
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