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 # |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "src/third_party/libc++abi/trunk": | 137 "src/third_party/libc++abi/trunk": |
138 Var("llvm_url") + "/libcxxabi/trunk@" + Var("libcxxabi_revision"), | 138 Var("llvm_url") + "/libcxxabi/trunk@" + Var("libcxxabi_revision"), |
139 | 139 |
140 "src/third_party/snappy/src": | 140 "src/third_party/snappy/src": |
141 (Var("googlecode_url") % "snappy") + "/trunk@80", | 141 (Var("googlecode_url") % "snappy") + "/trunk@80", |
142 | 142 |
143 "src/tools/grit": | 143 "src/tools/grit": |
144 (Var("googlecode_url") % "grit-i18n") + "/trunk@167", | 144 (Var("googlecode_url") % "grit-i18n") + "/trunk@167", |
145 | 145 |
146 "src/tools/gyp": | 146 "src/tools/gyp": |
147 (Var("googlecode_url") % "gyp") + "/trunk@1919", | 147 (Var("googlecode_url") % "gyp") + "/trunk@1921", |
148 | 148 |
149 "src/tools/swarming_client": | 149 "src/tools/swarming_client": |
150 Var("chromium_git") + "/external/swarming.client.git@" + | 150 Var("chromium_git") + "/external/swarming.client.git@" + |
151 Var("swarming_revision"), | 151 Var("swarming_revision"), |
152 | 152 |
153 "src/v8": | 153 "src/v8": |
154 (Var("googlecode_url") % "v8") + "/" + Var("v8_branch") + "@" + | 154 (Var("googlecode_url") % "v8") + "/" + Var("v8_branch") + "@" + |
155 Var("v8_revision"), | 155 Var("v8_revision"), |
156 | 156 |
157 "src/native_client": | 157 "src/native_client": |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 "-s", "src/build/linux/bin/eu-strip.sha1", | 767 "-s", "src/build/linux/bin/eu-strip.sha1", |
768 ], | 768 ], |
769 }, | 769 }, |
770 { | 770 { |
771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 771 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
772 "name": "gyp", | 772 "name": "gyp", |
773 "pattern": ".", | 773 "pattern": ".", |
774 "action": ["python", "src/build/gyp_chromium"], | 774 "action": ["python", "src/build/gyp_chromium"], |
775 }, | 775 }, |
776 ] | 776 ] |
OLD | NEW |