| 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 | 7 # python tools/deps2git/deps2git.py -o .DEPS.git |
| 8 # gclient runhooks | 8 # gclient runhooks |
| 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by | 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by |
| 10 # a bot when you modify this one. | 10 # a bot when you modify this one. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "jsoncpp_revision": "248", | 59 "jsoncpp_revision": "248", |
| 60 "nss_revision": "254867", | 60 "nss_revision": "254867", |
| 61 # Three lines of non-changing comments so that | 61 # Three lines of non-changing comments so that |
| 62 # the commit queue can handle CLs rolling swarming_client | 62 # the commit queue can handle CLs rolling swarming_client |
| 63 # and whatever else without interference from each other. | 63 # and whatever else without interference from each other. |
| 64 "swarming_revision": "dd806d645e711260c24bf7a2f061d6db091c3715", | 64 "swarming_revision": "dd806d645e711260c24bf7a2f061d6db091c3715", |
| 65 # Three lines of non-changing comments so that | 65 # Three lines of non-changing comments so that |
| 66 # the commit queue can handle CLs rolling openssl | 66 # the commit queue can handle CLs rolling openssl |
| 67 # and whatever else without interference from each other. | 67 # and whatever else without interference from each other. |
| 68 "openssl_revision": "253925", | 68 "openssl_revision": "253925", |
| 69 # Three lines of non-changing comments so that |
| 70 # the commit queue can handle CLs rolling ANGLE |
| 71 # and whatever else without interference from each other. |
| 72 "angle_revision": "fa63e947cb3eccf463648d21a05d5002c9b8adfa", |
| 69 } | 73 } |
| 70 | 74 |
| 71 deps = { | 75 deps = { |
| 72 "src/breakpad/src": | 76 "src/breakpad/src": |
| 73 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1271", | 77 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1271", |
| 74 | 78 |
| 75 "src/sdch/open-vcdiff": | 79 "src/sdch/open-vcdiff": |
| 76 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 80 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
| 77 | 81 |
| 78 "src/testing/gtest": | 82 "src/testing/gtest": |
| 79 (Var("googlecode_url") % "googletest") + "/trunk@643", | 83 (Var("googlecode_url") % "googletest") + "/trunk@643", |
| 80 | 84 |
| 81 "src/testing/gmock": | 85 "src/testing/gmock": |
| 82 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 86 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 83 | 87 |
| 84 "src/third_party/angle": | 88 "src/third_party/angle": |
| 85 Var("chromium_git") + | 89 Var("chromium_git") + "/angle/angle.git@" + Var("angle_revision"), |
| 86 "/angle/angle.git@fa63e947cb3eccf463648d21a05d5002c9b8adfa", | |
| 87 | 90 |
| 88 "src/third_party/trace-viewer": | 91 "src/third_party/trace-viewer": |
| 89 (Var("googlecode_url") % "trace-viewer") + "/trunk@1203", | 92 (Var("googlecode_url") % "trace-viewer") + "/trunk@1203", |
| 90 | 93 |
| 91 "src/third_party/WebKit": | 94 "src/third_party/WebKit": |
| 92 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 95 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
| 93 | 96 |
| 94 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": | 97 "src/third_party/WebKit/LayoutTests/w3c/web-platform-tests": |
| 95 Var("chromium_git") + | 98 Var("chromium_git") + |
| 96 "/external/w3c/web-platform-tests.git@ac4322a338be82b3d8b722917d6d3d057c0a3f
6a", | 99 "/external/w3c/web-platform-tests.git@ac4322a338be82b3d8b722917d6d3d057c0a3f
6a", |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 "-s", "src/build/linux/bin/eu-strip.sha1", | 715 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 713 ], | 716 ], |
| 714 }, | 717 }, |
| 715 { | 718 { |
| 716 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 719 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 717 "name": "gyp", | 720 "name": "gyp", |
| 718 "pattern": ".", | 721 "pattern": ".", |
| 719 "action": ["python", "src/build/gyp_chromium"], | 722 "action": ["python", "src/build/gyp_chromium"], |
| 720 }, | 723 }, |
| 721 ] | 724 ] |
| OLD | NEW |