| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + | 326 (Var("nacl_trunk") + "/deps/third_party/mingw-w64/mingw/bin@" + |
| 327 Var("nacl_tools_revision")), | 327 Var("nacl_tools_revision")), |
| 328 | 328 |
| 329 # Dependencies used by libjpeg-turbo | 329 # Dependencies used by libjpeg-turbo |
| 330 "src/third_party/yasm/binaries": | 330 "src/third_party/yasm/binaries": |
| 331 "/trunk/deps/third_party/yasm/binaries@154708", | 331 "/trunk/deps/third_party/yasm/binaries@154708", |
| 332 | 332 |
| 333 # Binary level profile guided optimizations. This points to the | 333 # Binary level profile guided optimizations. This points to the |
| 334 # latest release binaries for the toolchain. | 334 # latest release binaries for the toolchain. |
| 335 "src/third_party/syzygy/binaries": | 335 "src/third_party/syzygy/binaries": |
| 336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1899", | 336 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@1909", |
| 337 | 337 |
| 338 # Binaries for nacl sdk. | 338 # Binaries for nacl sdk. |
| 339 "src/third_party/nacl_sdk_binaries": | 339 "src/third_party/nacl_sdk_binaries": |
| 340 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 340 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 341 }, | 341 }, |
| 342 "ios": { | 342 "ios": { |
| 343 "src/third_party/GTM": | 343 "src/third_party/GTM": |
| 344 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 344 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
| 345 Var("gtm_revision"), | 345 Var("gtm_revision"), |
| 346 | 346 |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 "pattern": ".", | 681 "pattern": ".", |
| 682 "action": ["python", "src/build/gyp_chromium"], | 682 "action": ["python", "src/build/gyp_chromium"], |
| 683 }, | 683 }, |
| 684 { | 684 { |
| 685 # Check for landmines (reasons to clobber the build). | 685 # Check for landmines (reasons to clobber the build). |
| 686 "name": "landmines", | 686 "name": "landmines", |
| 687 "pattern": ".", | 687 "pattern": ".", |
| 688 "action": ["python", "src/build/landmines.py"], | 688 "action": ["python", "src/build/landmines.py"], |
| 689 }, | 689 }, |
| 690 ] | 690 ] |
| OLD | NEW |