OLD | NEW |
---|---|
1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
2 # that gclient uses under git. | 2 # that gclient uses under git. |
3 # | 3 # |
4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
5 # | 5 # |
6 # To test manually, run: | 6 # To test manually, run: |
7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
9 # .gclient file (the parent of "src"). | 9 # .gclient file (the parent of "src"). |
10 # | 10 # |
11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run | 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run |
12 # gclient sync | 12 # gclient sync |
13 # Verify the thing happened you wanted. Then revert your .DEPS.git change | 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change |
14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically | 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically |
15 # updated by a bot when you modify this one. | 15 # updated by a bot when you modify this one. |
16 # | 16 # |
17 # When adding a new dependency, please update the top-level .gitignore file | 17 # When adding a new dependency, please update the top-level .gitignore file |
18 # to list the dependency's destination directory. | 18 # to list the dependency's destination directory. |
19 | 19 |
20 vars = { | 20 vars = { |
21 # Use this googlecode_url variable only if there is an internal mirror for it. | 21 # Use this googlecode_url variable only if there is an internal mirror for it. |
22 # If you do not know, use the full path while defining your new deps entry. | 22 # If you do not know, use the full path while defining your new deps entry. |
23 "github_url": "https://github.com/%s.git", | |
Lei Zhang
2014/05/20 23:37:59
I'm not sure if this is the right way or if we pre
cjhopman
2014/06/09 23:48:00
Done. Was waiting on infra setting up the mirror.
| |
23 "googlecode_url": "http://%s.googlecode.com/svn", | 24 "googlecode_url": "http://%s.googlecode.com/svn", |
24 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", | 25 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
25 "llvm_url": "http://src.chromium.org/llvm-project", | 26 "llvm_url": "http://src.chromium.org/llvm-project", |
26 "llvm_git": "https://llvm.googlesource.com", | 27 "llvm_git": "https://llvm.googlesource.com", |
27 "libcxx_revision": "206024", | 28 "libcxx_revision": "206024", |
28 "libcxxabi_revision": "206024", | 29 "libcxxabi_revision": "206024", |
29 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 30 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
30 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 31 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
31 "webkit_revision": "174386", | 32 "webkit_revision": "174386", |
32 "chromium_git": "https://chromium.googlesource.com", | 33 "chromium_git": "https://chromium.googlesource.com", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 # Three lines of non-changing comments so that | 78 # Three lines of non-changing comments so that |
78 # the commit queue can handle CLs rolling PDFIum | 79 # the commit queue can handle CLs rolling PDFIum |
79 # and whatever else without interference from each other. | 80 # and whatever else without interference from each other. |
80 "pdfium_revision": "951f241bcf22f0095abe2f109adfdd9c19e76d70", | 81 "pdfium_revision": "951f241bcf22f0095abe2f109adfdd9c19e76d70", |
81 } | 82 } |
82 | 83 |
83 deps = { | 84 deps = { |
84 "src/breakpad/src": | 85 "src/breakpad/src": |
85 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1331", | 86 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1331", |
86 | 87 |
88 "src/third_party/colorama/src": | |
89 (Var("github_url") % "tartley/colorama") + "@799604a104", | |
90 | |
87 "src/buildtools": | 91 "src/buildtools": |
88 Var("chromium_git") + "/chromium/buildtools.git@" + | 92 Var("chromium_git") + "/chromium/buildtools.git@" + |
89 Var("buildtools_revision"), | 93 Var("buildtools_revision"), |
90 | 94 |
91 "src/sdch/open-vcdiff": | 95 "src/sdch/open-vcdiff": |
92 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 96 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
93 | 97 |
94 "src/testing/gtest": | 98 "src/testing/gtest": |
95 (Var("googlecode_url") % "googletest") + "/trunk@643", | 99 (Var("googlecode_url") % "googletest") + "/trunk@643", |
96 | 100 |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
775 "-s", "src/build/linux/bin/eu-strip.sha1", | 779 "-s", "src/build/linux/bin/eu-strip.sha1", |
776 ], | 780 ], |
777 }, | 781 }, |
778 { | 782 { |
779 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 783 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
780 "name": "gyp", | 784 "name": "gyp", |
781 "pattern": ".", | 785 "pattern": ".", |
782 "action": ["python", "src/build/gyp_chromium"], | 786 "action": ["python", "src/build/gyp_chromium"], |
783 }, | 787 }, |
784 ] | 788 ] |
OLD | NEW |