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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 # Three lines of non-changing comments so that | 54 # Three lines of non-changing comments so that |
55 # the commit queue can handle CLs rolling WebRTC | 55 # the commit queue can handle CLs rolling WebRTC |
56 # and V8 without interference from each other. | 56 # and V8 without interference from each other. |
57 "webrtc_revision": "5523", | 57 "webrtc_revision": "5523", |
58 #"webrtc_revision": "5521", | 58 #"webrtc_revision": "5521", |
59 "jsoncpp_revision": "248", | 59 "jsoncpp_revision": "248", |
60 "nss_revision": "246067", | 60 "nss_revision": "246067", |
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": "f9538eebbc82bdfed4768cde388c8ae8a1ac3209", | 64 "swarming_revision": "de4e7cfa2b4417021f34c2d2e573c2a5d6e1d317", |
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": "250522", | 68 "openssl_revision": "250522", |
69 } | 69 } |
70 | 70 |
71 deps = { | 71 deps = { |
72 "src/breakpad/src": | 72 "src/breakpad/src": |
73 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1271", | 73 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1271", |
74 | 74 |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 "-s", "src/build/linux/bin/eu-strip.sha1", | 754 "-s", "src/build/linux/bin/eu-strip.sha1", |
755 ], | 755 ], |
756 }, | 756 }, |
757 { | 757 { |
758 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 758 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
759 "name": "gyp", | 759 "name": "gyp", |
760 "pattern": ".", | 760 "pattern": ".", |
761 "action": ["python", "src/build/gyp_chromium"], | 761 "action": ["python", "src/build/gyp_chromium"], |
762 }, | 762 }, |
763 ] | 763 ] |
OLD | NEW |