Chromium Code Reviews| 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. | |
| 469 "src/third_party/gold": | 471 "src/third_party/gold": |
| 470 "/trunk/deps/third_party/gold@228995", | 472 "/trunk/deps/third_party/gold@228995", |
| 471 | 473 |
| 474 "src/third_party/binutils": | |
| 475 "/trunk/deps/third_party/binutils@??????", | |
|
Lei Zhang
2014/03/24 19:38:25
You may want to get the binutils files checked in
mithro-old
2014/03/28 03:56:00
Done.
| |
| 476 | |
| 472 "src/third_party/libmtp": | 477 "src/third_party/libmtp": |
| 473 "/trunk/deps/third_party/libmtp@206535", | 478 "/trunk/deps/third_party/libmtp@206535", |
| 474 | 479 |
| 475 # Used on Linux only. CrOS already has a copy. | 480 # Used on Linux only. CrOS already has a copy. |
| 476 "src/third_party/mtpd/source": | 481 "src/third_party/mtpd/source": |
| 477 Var("chromiumos_git") + "/platform/mtpd.git" + | 482 Var("chromiumos_git") + "/platform/mtpd.git" + |
| 478 "@f9759da3a7cd95080414a7da0d899c47cad794f2", | 483 "@f9759da3a7cd95080414a7da0d899c47cad794f2", |
| 479 | 484 |
| 480 # Used on Linux only. CrOS already has a copy. | 485 # Used on Linux only. CrOS already has a copy. |
| 481 "src/third_party/cros_dbus_cplusplus/source": | 486 "src/third_party/cros_dbus_cplusplus/source": |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 738 "name": "clang_format_linux", | 743 "name": "clang_format_linux", |
| 739 "pattern": "src/third_party/clang_format/bin/linux/clang-format.sha1", | 744 "pattern": "src/third_party/clang_format/bin/linux/clang-format.sha1", |
| 740 "action": [ "download_from_google_storage", | 745 "action": [ "download_from_google_storage", |
| 741 "--no_resume", | 746 "--no_resume", |
| 742 "--platform=linux*", | 747 "--platform=linux*", |
| 743 "--no_auth", | 748 "--no_auth", |
| 744 "--bucket", "chromium-clang-format", | 749 "--bucket", "chromium-clang-format", |
| 745 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1" , | 750 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1" , |
| 746 ], | 751 ], |
| 747 }, | 752 }, |
| 753 # Pull binutils for linux, enabled debug fission for faster linking / | |
| 754 # debugging when used with clang on Ubuntu Precise. | |
| 755 # https://code.google.com/p/chromium/issues/detail?id=352046 | |
| 756 { | |
| 757 "name": "binutils_linux", | |
| 758 "pattern": "src/third_party/binutils/linux/binutils.sha1", | |
| 759 "action": [ "download_from_google_storage", | |
| 760 "--no_resume", | |
| 761 "--platform=linux*", | |
| 762 "--no_auth", | |
| 763 "--bucket", "chromium-binutils", | |
| 764 "-s", "src/third_party/binutils/linux/binutils.sha1", | |
| 765 ], | |
| 766 }, | |
| 748 # Pull eu-strip binaries using checked-in hashes. | 767 # Pull eu-strip binaries using checked-in hashes. |
| 749 { | 768 { |
| 750 "name": "eu-strip", | 769 "name": "eu-strip", |
| 751 "pattern": "src/build/linux/bin/eu-strip.sha1", | 770 "pattern": "src/build/linux/bin/eu-strip.sha1", |
| 752 "action": [ "download_from_google_storage", | 771 "action": [ "download_from_google_storage", |
| 753 "--no_resume", | 772 "--no_resume", |
| 754 "--platform=linux*", | 773 "--platform=linux*", |
| 755 "--no_auth", | 774 "--no_auth", |
| 756 "--bucket", "chromium-eu-strip", | 775 "--bucket", "chromium-eu-strip", |
| 757 "-s", "src/build/linux/bin/eu-strip.sha1", | 776 "-s", "src/build/linux/bin/eu-strip.sha1", |
| 758 ], | 777 ], |
| 759 }, | 778 }, |
| 760 { | 779 { |
| 761 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 780 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 762 "name": "gyp", | 781 "name": "gyp", |
| 763 "pattern": ".", | 782 "pattern": ".", |
| 764 "action": ["python", "src/build/gyp_chromium"], | 783 "action": ["python", "src/build/gyp_chromium"], |
| 765 }, | 784 }, |
| 766 ] | 785 ] |
| OLD | NEW |