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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "src/third_party/leveldatabase/src": | 108 "src/third_party/leveldatabase/src": |
109 (Var("googlecode_url") % "leveldb") + "/trunk@77", | 109 (Var("googlecode_url") % "leveldb") + "/trunk@77", |
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@1779", |
119 | 119 |
120 "src/tools/swarming_client": | 120 "src/tools/swarming_client": |
121 Var("chromium_git") + "/external/swarming.client.git@" + | 121 Var("chromium_git") + "/external/swarming.client.git@" + |
122 Var("swarming_revision"), | 122 Var("swarming_revision"), |
123 | 123 |
124 "src/v8": | 124 "src/v8": |
125 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 125 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
126 | 126 |
127 "src/native_client": | 127 "src/native_client": |
128 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 128 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 "pattern": ".", | 645 "pattern": ".", |
646 "action": ["python", "src/build/gyp_chromium"], | 646 "action": ["python", "src/build/gyp_chromium"], |
647 }, | 647 }, |
648 { | 648 { |
649 # Check for landmines (reasons to clobber the build). | 649 # Check for landmines (reasons to clobber the build). |
650 "name": "landmines", | 650 "name": "landmines", |
651 "pattern": ".", | 651 "pattern": ".", |
652 "action": ["python", "src/build/landmines.py"], | 652 "action": ["python", "src/build/landmines.py"], |
653 }, | 653 }, |
654 ] | 654 ] |
OLD | NEW |