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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "src/third_party/leveldatabase/src": | 112 "src/third_party/leveldatabase/src": |
113 (Var("googlecode_url") % "leveldb") + "/trunk@78", | 113 (Var("googlecode_url") % "leveldb") + "/trunk@78", |
114 | 114 |
115 "src/third_party/snappy/src": | 115 "src/third_party/snappy/src": |
116 (Var("googlecode_url") % "snappy") + "/trunk@80", | 116 (Var("googlecode_url") % "snappy") + "/trunk@80", |
117 | 117 |
118 "src/tools/grit": | 118 "src/tools/grit": |
119 (Var("googlecode_url") % "grit-i18n") + "/trunk@140", | 119 (Var("googlecode_url") % "grit-i18n") + "/trunk@140", |
120 | 120 |
121 "src/tools/gyp": | 121 "src/tools/gyp": |
122 (Var("googlecode_url") % "gyp") + "/trunk@1816", | 122 (Var("googlecode_url") % "gyp") + "/trunk@1806", |
123 | 123 |
124 "src/tools/swarming_client": | 124 "src/tools/swarming_client": |
125 Var("chromium_git") + "/external/swarming.client.git@" + | 125 Var("chromium_git") + "/external/swarming.client.git@" + |
126 Var("swarming_revision"), | 126 Var("swarming_revision"), |
127 | 127 |
128 "src/v8": | 128 "src/v8": |
129 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 129 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
130 | 130 |
131 "src/native_client": | 131 "src/native_client": |
132 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 132 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 "pattern": ".", | 697 "pattern": ".", |
698 "action": ["python", "src/build/gyp_chromium"], | 698 "action": ["python", "src/build/gyp_chromium"], |
699 }, | 699 }, |
700 { | 700 { |
701 # Check for landmines (reasons to clobber the build). | 701 # Check for landmines (reasons to clobber the build). |
702 "name": "landmines", | 702 "name": "landmines", |
703 "pattern": ".", | 703 "pattern": ".", |
704 "action": ["python", "src/build/landmines.py"], | 704 "action": ["python", "src/build/landmines.py"], |
705 }, | 705 }, |
706 ] | 706 ] |
OLD | NEW |