| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 "src/third_party/xdg-utils": | 459 "src/third_party/xdg-utils": |
| 460 "/trunk/deps/third_party/xdg-utils@203785", | 460 "/trunk/deps/third_party/xdg-utils@203785", |
| 461 | 461 |
| 462 "src/third_party/swig/linux": | 462 "src/third_party/swig/linux": |
| 463 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 463 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
| 464 | 464 |
| 465 "src/third_party/lss": | 465 "src/third_party/lss": |
| 466 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 466 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
| 467 Var("lss_revision")), | 467 Var("lss_revision")), |
| 468 | 468 |
| 469 # FIXME(mithro): src/third_party/binutils is replacing src/third_party/gold. | |
| 470 # Remove gold when binutils is being used correctly. | |
| 471 "src/third_party/gold": | |
| 472 "/trunk/deps/third_party/gold@228995", | |
| 473 | |
| 474 # For Linux and Chromium OS. | 469 # For Linux and Chromium OS. |
| 475 "src/third_party/cros_system_api": | 470 "src/third_party/cros_system_api": |
| 476 Var("chromiumos_git") + "/platform/system_api.git" + | 471 Var("chromiumos_git") + "/platform/system_api.git" + |
| 477 "@926038efc28089447a2f9292d7dc8cdc7eff7a36", | 472 "@926038efc28089447a2f9292d7dc8cdc7eff7a36", |
| 478 | 473 |
| 479 # Note that this is different from Android's freetype repo. | 474 # Note that this is different from Android's freetype repo. |
| 480 "src/third_party/freetype2/src": | 475 "src/third_party/freetype2/src": |
| 481 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 476 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
| 482 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 477 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 483 | 478 |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 "-s", "src/build/linux/bin/eu-strip.sha1", | 756 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 762 ], | 757 ], |
| 763 }, | 758 }, |
| 764 { | 759 { |
| 765 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 760 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 766 "name": "gyp", | 761 "name": "gyp", |
| 767 "pattern": ".", | 762 "pattern": ".", |
| 768 "action": ["python", "src/build/gyp_chromium"], | 763 "action": ["python", "src/build/gyp_chromium"], |
| 769 }, | 764 }, |
| 770 ] | 765 ] |
| OLD | NEW |