| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 "src/third_party/jsoncpp/source/include": | 252 "src/third_party/jsoncpp/source/include": |
| 253 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 253 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 254 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), | 254 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), |
| 255 | 255 |
| 256 "src/third_party/jsoncpp/source/src/lib_json": | 256 "src/third_party/jsoncpp/source/src/lib_json": |
| 257 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 257 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 258 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 258 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
| 259 | 259 |
| 260 "src/third_party/libyuv": | 260 "src/third_party/libyuv": |
| 261 (Var("googlecode_url") % "libyuv") + "/trunk@1000", | 261 (Var("googlecode_url") % "libyuv") + "/trunk@1007", |
| 262 | 262 |
| 263 "src/third_party/smhasher/src": | 263 "src/third_party/smhasher/src": |
| 264 (Var("googlecode_url") % "smhasher") + "/trunk@152", | 264 (Var("googlecode_url") % "smhasher") + "/trunk@152", |
| 265 | 265 |
| 266 "src/third_party/libaddressinput/src/cpp": | 266 "src/third_party/libaddressinput/src/cpp": |
| 267 (Var("googlecode_url") % "libaddressinput") + "/trunk/cpp@" + | 267 (Var("googlecode_url") % "libaddressinput") + "/trunk/cpp@" + |
| 268 Var("libaddressinput_revision"), | 268 Var("libaddressinput_revision"), |
| 269 "src/third_party/libaddressinput/src/testdata": | 269 "src/third_party/libaddressinput/src/testdata": |
| 270 (Var("googlecode_url") % "libaddressinput") + "/trunk/testdata@" + | 270 (Var("googlecode_url") % "libaddressinput") + "/trunk/testdata@" + |
| 271 Var("libaddressinput_revision"), | 271 Var("libaddressinput_revision"), |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 "-s", "src/build/linux/bin/eu-strip.sha1", | 768 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 769 ], | 769 ], |
| 770 }, | 770 }, |
| 771 { | 771 { |
| 772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 772 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 773 "name": "gyp", | 773 "name": "gyp", |
| 774 "pattern": ".", | 774 "pattern": ".", |
| 775 "action": ["python", "src/build/gyp_chromium"], | 775 "action": ["python", "src/build/gyp_chromium"], |
| 776 }, | 776 }, |
| 777 ] | 777 ] |
| OLD | NEW |