| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 "name": "gn_linux32", | 680 "name": "gn_linux32", |
| 681 "pattern": "src/tools/gn/bin/linux/gn32.sha1", | 681 "pattern": "src/tools/gn/bin/linux/gn32.sha1", |
| 682 "action": [ "download_from_google_storage", | 682 "action": [ "download_from_google_storage", |
| 683 "--no_resume", | 683 "--no_resume", |
| 684 "--platform=linux*", | 684 "--platform=linux*", |
| 685 "--no_auth", | 685 "--no_auth", |
| 686 "--bucket", "chromium-gn", | 686 "--bucket", "chromium-gn", |
| 687 "-s", "src/tools/gn/bin/linux/gn32.sha1", | 687 "-s", "src/tools/gn/bin/linux/gn32.sha1", |
| 688 ], | 688 ], |
| 689 }, | 689 }, |
| 690 # Pull clang-format binaries from cloud storage using checked-in hashes. |
| 691 { |
| 692 "name": "clang_format_win", |
| 693 "pattern": "src/third_party/clang_format/bin/win/clang-format.exe.sha1", |
| 694 "action": [ |
| 695 "download_from_google_storage", |
| 696 "--no_resume", |
| 697 "--platform=win32", |
| 698 "--no_auth", |
| 699 "--bucket", "chromium-clang-format", |
| 700 "-s", "src/third_party/clang_format/bin/win/clang-format.exe.sha1", |
| 701 ], |
| 702 }, |
| 703 { |
| 704 "name": "clang_format_mac", |
| 705 "pattern": "src/third_party/clang_format/bin/mac/clang-format.sha1", |
| 706 "action": [ |
| 707 "download_from_google_storage", |
| 708 "--no_resume", |
| 709 "--platform=darwin", |
| 710 "--no_auth", |
| 711 "--bucket", "chromium-clang-format", |
| 712 "-s", "src/third_party/clang_format/bin/mac/clang-format.sha1", |
| 713 ], |
| 714 }, |
| 715 { |
| 716 "name": "clang_format_linux", |
| 717 "pattern": "src/third_party/clang_format/bin/linux/clang-format.sha1", |
| 718 "action": [ |
| 719 "download_from_google_storage", |
| 720 "--no_resume", |
| 721 "--platform=linux*", |
| 722 "--no_auth", |
| 723 "--bucket", "chromium-clang-format", |
| 724 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1", |
| 725 ], |
| 726 }, |
| 727 { |
| 728 "name": "clang_format_linux32", |
| 729 "pattern": "src/third_party/clang_format/bin/linux/clang-format32.sha1", |
| 730 "action": [ |
| 731 "download_from_google_storage", |
| 732 "--no_resume", |
| 733 "--platform=linux*", |
| 734 "--no_auth", |
| 735 "--bucket", "chromium-clang-format", |
| 736 "-s", "src/third_party/clang_format/bin/linux/clang-format32.sha1", |
| 737 ], |
| 738 }, |
| 690 { | 739 { |
| 691 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 740 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 692 "name": "gyp", | 741 "name": "gyp", |
| 693 "pattern": ".", | 742 "pattern": ".", |
| 694 "action": ["python", "src/build/gyp_chromium"], | 743 "action": ["python", "src/build/gyp_chromium"], |
| 695 }, | 744 }, |
| 696 { | 745 { |
| 697 # Check for landmines (reasons to clobber the build). | 746 # Check for landmines (reasons to clobber the build). |
| 698 "name": "landmines", | 747 "name": "landmines", |
| 699 "pattern": ".", | 748 "pattern": ".", |
| 700 "action": ["python", "src/build/landmines.py"], | 749 "action": ["python", "src/build/landmines.py"], |
| 701 }, | 750 }, |
| 702 ] | 751 ] |
| OLD | NEW |