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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 # the commit queue can handle CLs rolling Skia | 47 # the commit queue can handle CLs rolling Skia |
48 # and V8 without interference from each other. | 48 # and V8 without interference from each other. |
49 "v8_revision": "17429", | 49 "v8_revision": "17429", |
50 # Three lines of non-changing comments so that | 50 # Three lines of non-changing comments so that |
51 # the commit queue can handle CLs rolling WebRTC | 51 # the commit queue can handle CLs rolling WebRTC |
52 # and V8 without interference from each other. | 52 # and V8 without interference from each other. |
53 "webrtc_revision": "4982", | 53 "webrtc_revision": "4982", |
54 "jsoncpp_revision": "248", | 54 "jsoncpp_revision": "248", |
55 "nss_revision": "231937", | 55 "nss_revision": "231937", |
56 # Three lines of non-changing comments so that | 56 # Three lines of non-changing comments so that |
57 # the commit queue can handle CLs rolling swarm_client | 57 # the commit queue can handle CLs rolling swarming_client |
58 # and whatever else without interference from each other. | 58 # and whatever else without interference from each other. |
59 "swarm_revision": "230741", | 59 "swarming_revision": "141ef86f4abf255e578320bfe6e42006c251bc39", |
60 # Three lines of non-changing comments so that | 60 # Three lines of non-changing comments so that |
61 # the commit queue can handle CLs rolling openssl | 61 # the commit queue can handle CLs rolling openssl |
62 # and whatever else without interference from each other. | 62 # and whatever else without interference from each other. |
63 "openssl_revision": "231572", | 63 "openssl_revision": "231572", |
64 } | 64 } |
65 | 65 |
66 deps = { | 66 deps = { |
67 "src/breakpad/src": | 67 "src/breakpad/src": |
68 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1222", | 68 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1222", |
69 | 69 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 "src/third_party/snappy/src": | 111 "src/third_party/snappy/src": |
112 (Var("googlecode_url") % "snappy") + "/trunk@80", | 112 (Var("googlecode_url") % "snappy") + "/trunk@80", |
113 | 113 |
114 "src/tools/grit": | 114 "src/tools/grit": |
115 (Var("googlecode_url") % "grit-i18n") + "/trunk@136", | 115 (Var("googlecode_url") % "grit-i18n") + "/trunk@136", |
116 | 116 |
117 "src/tools/gyp": | 117 "src/tools/gyp": |
118 (Var("googlecode_url") % "gyp") + "/trunk@1773", | 118 (Var("googlecode_url") % "gyp") + "/trunk@1773", |
119 | 119 |
120 "src/tools/swarm_client": | 120 "src/tools/swarming_client": |
121 "/trunk/tools/swarm_client@" + Var("swarm_revision"), | 121 Var("chromium_git") + "/external/swarming.client.git@" + |
| 122 Var("swarming_revision"), |
122 | 123 |
123 "src/v8": | 124 "src/v8": |
124 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 125 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
125 | 126 |
126 "src/native_client": | 127 "src/native_client": |
127 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 128 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
128 | 129 |
129 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": | 130 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": |
130 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + | 131 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + |
131 Var("nacl_revision"), | 132 Var("nacl_revision"), |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 "pattern": ".", | 645 "pattern": ".", |
645 "action": ["python", "src/build/gyp_chromium"], | 646 "action": ["python", "src/build/gyp_chromium"], |
646 }, | 647 }, |
647 { | 648 { |
648 # Check for landmines (reasons to clobber the build). | 649 # Check for landmines (reasons to clobber the build). |
649 "name": "landmines", | 650 "name": "landmines", |
650 "pattern": ".", | 651 "pattern": ".", |
651 "action": ["python", "src/build/landmines.py"], | 652 "action": ["python", "src/build/landmines.py"], |
652 }, | 653 }, |
653 ] | 654 ] |
OLD | NEW |